pub enum AllValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
}Variants§
Implementations§
Source§impl AllValue
impl AllValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is AllValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is AllValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is AllValue::Revert otherwise false
Sourcepub const fn is_revert_layer(&self) -> bool
pub const fn is_revert_layer(&self) -> bool
Returns true if the enum is AllValue::RevertLayer otherwise false
Trait Implementations§
impl StructuralPartialEq for AllValue
impl UnitDataType<All<AllValue>> for AllValue
Auto Trait Implementations§
impl Freeze for AllValue
impl RefUnwindSafe for AllValue
impl Send for AllValue
impl Sync for AllValue
impl Unpin for AllValue
impl UnwindSafe for AllValue
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