pub enum ThreadSourceKind {
Cli,
Vscode,
Exec,
AppServer,
SubAgent,
SubAgentReview,
SubAgentCompact,
SubAgentThreadSpawn,
SubAgentOther,
Unknown,
}Expand description
ThreadSourceKind
JSON schema
{
"type": "string",
"enum": [
"cli",
"vscode",
"exec",
"appServer",
"subAgent",
"subAgentReview",
"subAgentCompact",
"subAgentThreadSpawn",
"subAgentOther",
"unknown"
]
}Variants§
Cli
Vscode
Exec
AppServer
SubAgent
SubAgentReview
SubAgentCompact
SubAgentThreadSpawn
SubAgentOther
Unknown
Trait Implementations§
Source§impl Clone for ThreadSourceKind
impl Clone for ThreadSourceKind
Source§fn clone(&self) -> ThreadSourceKind
fn clone(&self) -> ThreadSourceKind
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 ThreadSourceKind
impl Debug for ThreadSourceKind
Source§impl<'de> Deserialize<'de> for ThreadSourceKind
impl<'de> Deserialize<'de> for ThreadSourceKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ThreadSourceKind
impl Display for ThreadSourceKind
Source§impl FromStr for ThreadSourceKind
impl FromStr for ThreadSourceKind
Source§impl Hash for ThreadSourceKind
impl Hash for ThreadSourceKind
Source§impl Ord for ThreadSourceKind
impl Ord for ThreadSourceKind
Source§fn cmp(&self, other: &ThreadSourceKind) -> Ordering
fn cmp(&self, other: &ThreadSourceKind) -> 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 ThreadSourceKind
impl PartialEq for ThreadSourceKind
Source§fn eq(&self, other: &ThreadSourceKind) -> bool
fn eq(&self, other: &ThreadSourceKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ThreadSourceKind
impl PartialOrd for ThreadSourceKind
Source§impl Serialize for ThreadSourceKind
impl Serialize for ThreadSourceKind
Source§impl TryFrom<&String> for ThreadSourceKind
impl TryFrom<&String> for ThreadSourceKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ThreadSourceKind
impl TryFrom<&str> for ThreadSourceKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ThreadSourceKind
impl TryFrom<String> for ThreadSourceKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ThreadSourceKind
impl Eq for ThreadSourceKind
impl StructuralPartialEq for ThreadSourceKind
Auto Trait Implementations§
impl Freeze for ThreadSourceKind
impl RefUnwindSafe for ThreadSourceKind
impl Send for ThreadSourceKind
impl Sync for ThreadSourceKind
impl Unpin for ThreadSourceKind
impl UnsafeUnpin for ThreadSourceKind
impl UnwindSafe for ThreadSourceKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.