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