pub enum BackfillOrderStrategy {
Default,
None,
Auto,
Fixed(Vec<(ObjectName, ObjectName)>),
}
Variants§
Trait Implementations§
Source§impl Clone for BackfillOrderStrategy
impl Clone for BackfillOrderStrategy
Source§fn clone(&self) -> BackfillOrderStrategy
fn clone(&self) -> BackfillOrderStrategy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BackfillOrderStrategy
impl Debug for BackfillOrderStrategy
Source§impl Default for BackfillOrderStrategy
impl Default for BackfillOrderStrategy
Source§fn default() -> BackfillOrderStrategy
fn default() -> BackfillOrderStrategy
Returns the “default value” for a type. Read more
Source§impl Display for BackfillOrderStrategy
impl Display for BackfillOrderStrategy
Source§impl Hash for BackfillOrderStrategy
impl Hash for BackfillOrderStrategy
Source§impl PartialEq for BackfillOrderStrategy
impl PartialEq for BackfillOrderStrategy
impl Eq for BackfillOrderStrategy
impl StructuralPartialEq for BackfillOrderStrategy
Auto Trait Implementations§
impl Freeze for BackfillOrderStrategy
impl RefUnwindSafe for BackfillOrderStrategy
impl Send for BackfillOrderStrategy
impl Sync for BackfillOrderStrategy
impl Unpin for BackfillOrderStrategy
impl UnwindSafe for BackfillOrderStrategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more