pub enum Deferrable {
NotDeferrable,
Deferrable,
InitiallyDeferred,
InitiallyImmediate,
}Expand description
Constraint deferral mode
Variants§
Trait Implementations§
Source§impl Clone for Deferrable
impl Clone for Deferrable
Source§fn clone(&self) -> Deferrable
fn clone(&self) -> Deferrable
Returns a duplicate 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 Deferrable
impl Debug for Deferrable
Source§impl Default for Deferrable
impl Default for Deferrable
Source§fn default() -> Deferrable
fn default() -> Deferrable
Returns the “default value” for a type. Read more
Source§impl PartialEq for Deferrable
impl PartialEq for Deferrable
impl StructuralPartialEq for Deferrable
Auto Trait Implementations§
impl Freeze for Deferrable
impl RefUnwindSafe for Deferrable
impl Send for Deferrable
impl Sync for Deferrable
impl Unpin for Deferrable
impl UnwindSafe for Deferrable
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