#[non_exhaustive]enum MiscProperty {
ScriptExtensions = 28_672,
}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.
ScriptExtensions = 28_672
Trait Implementations§
Source§impl Clone for MiscProperty
impl Clone for MiscProperty
Source§fn clone(&self) -> MiscProperty
fn clone(&self) -> MiscProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MiscProperty
impl Debug for MiscProperty
Source§impl Hash for MiscProperty
impl Hash for MiscProperty
Source§impl Ord for MiscProperty
impl Ord for MiscProperty
Source§fn cmp(&self, other: &MiscProperty) -> Ordering
fn cmp(&self, other: &MiscProperty) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MiscProperty
impl PartialEq for MiscProperty
Source§fn eq(&self, other: &MiscProperty) -> bool
fn eq(&self, other: &MiscProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MiscProperty
impl PartialOrd for MiscProperty
impl Copy for MiscProperty
impl Eq for MiscProperty
impl StructuralPartialEq for MiscProperty
Auto Trait Implementations§
impl Freeze for MiscProperty
impl RefUnwindSafe for MiscProperty
impl Send for MiscProperty
impl Sync for MiscProperty
impl Unpin for MiscProperty
impl UnsafeUnpin for MiscProperty
impl UnwindSafe for MiscProperty
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