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