pub enum ActionClass {
Read,
Write,
Execute,
}Variants§
Trait Implementations§
Source§impl Clone for ActionClass
impl Clone for ActionClass
Source§fn clone(&self) -> ActionClass
fn clone(&self) -> ActionClass
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 ActionClass
impl Debug for ActionClass
Source§impl<'de> Deserialize<'de> for ActionClass
impl<'de> Deserialize<'de> for ActionClass
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 Ord for ActionClass
impl Ord for ActionClass
Source§fn cmp(&self, other: &ActionClass) -> Ordering
fn cmp(&self, other: &ActionClass) -> 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 ActionClass
impl PartialEq for ActionClass
Source§fn eq(&self, other: &ActionClass) -> bool
fn eq(&self, other: &ActionClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ActionClass
impl PartialOrd for ActionClass
Source§impl Serialize for ActionClass
impl Serialize for ActionClass
impl Copy for ActionClass
impl Eq for ActionClass
impl StructuralPartialEq for ActionClass
Auto Trait Implementations§
impl Freeze for ActionClass
impl RefUnwindSafe for ActionClass
impl Send for ActionClass
impl Sync for ActionClass
impl Unpin for ActionClass
impl UnsafeUnpin for ActionClass
impl UnwindSafe for ActionClass
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