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