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