#[non_exhaustive]pub enum ScanSortMethod {
Signal,
Security,
}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 Clone for ScanSortMethod
impl Clone for ScanSortMethod
Source§fn clone(&self) -> ScanSortMethod
fn clone(&self) -> ScanSortMethod
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 ScanSortMethod
impl Debug for ScanSortMethod
Source§impl Default for ScanSortMethod
impl Default for ScanSortMethod
Source§fn default() -> ScanSortMethod
fn default() -> ScanSortMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScanSortMethod
impl<'de> Deserialize<'de> for ScanSortMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ScanSortMethod
impl Display for ScanSortMethod
Source§impl EnumMessage for ScanSortMethod
impl EnumMessage for ScanSortMethod
fn get_message(&self) -> Option<&'static str>
fn get_detailed_message(&self) -> Option<&'static str>
Source§fn get_documentation(&self) -> Option<&'static str>
fn get_documentation(&self) -> Option<&'static str>
Get the doc comment associated with a variant if it exists.
fn get_serializations(&self) -> &'static [&'static str]
Source§impl FromStr for ScanSortMethod
impl FromStr for ScanSortMethod
Source§impl IntoEnumIterator for ScanSortMethod
impl IntoEnumIterator for ScanSortMethod
type Iterator = ScanSortMethodIter
fn iter() -> ScanSortMethodIter ⓘ
Source§impl PartialEq for ScanSortMethod
impl PartialEq for ScanSortMethod
Source§impl Serialize for ScanSortMethod
impl Serialize for ScanSortMethod
Source§impl TryFrom<&str> for ScanSortMethod
impl TryFrom<&str> for ScanSortMethod
Source§impl VariantNames for ScanSortMethod
impl VariantNames for ScanSortMethod
impl Copy for ScanSortMethod
impl Eq for ScanSortMethod
impl StructuralPartialEq for ScanSortMethod
Auto Trait Implementations§
impl Freeze for ScanSortMethod
impl RefUnwindSafe for ScanSortMethod
impl Send for ScanSortMethod
impl Sync for ScanSortMethod
impl Unpin for ScanSortMethod
impl UnsafeUnpin for ScanSortMethod
impl UnwindSafe for ScanSortMethod
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