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