#[non_exhaustive]pub enum PickMode {
None,
Reactive,
All,
}
Expand description
Controls the paint cycle of the scene graph when in pick mode
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl<'a> FromValue<'a> for PickMode
impl<'a> FromValue<'a> for PickMode
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for PickMode
impl<'a> FromValueOptional<'a> for PickMode
Source§impl Ord for PickMode
impl Ord for PickMode
Source§impl PartialOrd for PickMode
impl PartialOrd for PickMode
Source§impl StaticType for PickMode
impl StaticType for PickMode
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for PickMode
impl Eq for PickMode
impl StructuralPartialEq for PickMode
Auto Trait Implementations§
impl Freeze for PickMode
impl RefUnwindSafe for PickMode
impl Send for PickMode
impl Sync for PickMode
impl Unpin for PickMode
impl UnwindSafe for PickMode
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,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.