pub enum QuotesValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Auto,
None,
String(DataTypeString),
}Variants§
Implementations§
Source§impl QuotesValue
impl QuotesValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is QuotesValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is QuotesValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is QuotesValue::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 QuotesValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is QuotesValue::Unset otherwise false
Sourcepub const fn is_auto(&self) -> bool
pub const fn is_auto(&self) -> bool
Returns true if the enum is QuotesValue::Auto otherwise false
Trait Implementations§
Source§impl Clone for QuotesValue
impl Clone for QuotesValue
Source§fn clone(&self) -> QuotesValue
fn clone(&self) -> QuotesValue
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 QuotesValue
impl Debug for QuotesValue
Source§impl Display for QuotesValue
impl Display for QuotesValue
Source§impl PartialEq for QuotesValue
impl PartialEq for QuotesValue
impl StructuralPartialEq for QuotesValue
impl UnitDataType<Quotes<QuotesValue>> for QuotesValue
Auto Trait Implementations§
impl Freeze for QuotesValue
impl RefUnwindSafe for QuotesValue
impl Send for QuotesValue
impl Sync for QuotesValue
impl Unpin for QuotesValue
impl UnwindSafe for QuotesValue
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