pub enum AiMemorySensitivity {
Public,
Internal,
Private,
Sensitive,
Restricted,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AiMemorySensitivity
impl Clone for AiMemorySensitivity
Source§fn clone(&self) -> AiMemorySensitivity
fn clone(&self) -> AiMemorySensitivity
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 AiMemorySensitivity
impl Debug for AiMemorySensitivity
Source§impl Display for AiMemorySensitivity
impl Display for AiMemorySensitivity
Source§impl FromStr for AiMemorySensitivity
impl FromStr for AiMemorySensitivity
Source§type Err = AiMemoryError
type Err = AiMemoryError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<AiMemorySensitivity, <AiMemorySensitivity as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiMemorySensitivity, <AiMemorySensitivity as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiMemorySensitivity
impl Hash for AiMemorySensitivity
Source§impl Ord for AiMemorySensitivity
impl Ord for AiMemorySensitivity
Source§fn cmp(&self, other: &AiMemorySensitivity) -> Ordering
fn cmp(&self, other: &AiMemorySensitivity) -> 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 AiMemorySensitivity
impl PartialEq for AiMemorySensitivity
Source§fn eq(&self, other: &AiMemorySensitivity) -> bool
fn eq(&self, other: &AiMemorySensitivity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiMemorySensitivity
impl PartialOrd for AiMemorySensitivity
impl Copy for AiMemorySensitivity
impl Eq for AiMemorySensitivity
impl StructuralPartialEq for AiMemorySensitivity
Auto Trait Implementations§
impl Freeze for AiMemorySensitivity
impl RefUnwindSafe for AiMemorySensitivity
impl Send for AiMemorySensitivity
impl Sync for AiMemorySensitivity
impl Unpin for AiMemorySensitivity
impl UnsafeUnpin for AiMemorySensitivity
impl UnwindSafe for AiMemorySensitivity
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