pub enum FeedEntryEventType {
Show 17 variants
RunStarted,
RunCompleted,
RunFailed,
RunTimeout,
RunCancelled,
SessionCreated,
CompanyTickStart,
CompanyTickEnd,
CompanyPaused,
CompanyResumed,
CompanyEscalation,
TeamRoundStart,
TeamRoundEnd,
ObjectiveCreated,
ObjectiveCompleted,
AgentCreated,
Other(String),
}Expand description
FeedEntryEventType enumeration.
Variants§
RunStarted
RunCompleted
RunFailed
RunTimeout
RunCancelled
SessionCreated
CompanyTickStart
CompanyTickEnd
CompanyPaused
CompanyResumed
CompanyEscalation
TeamRoundStart
TeamRoundEnd
ObjectiveCreated
ObjectiveCompleted
AgentCreated
Other(String)
A value the API introduced after this SDK was generated.
Implementations§
Trait Implementations§
Source§impl Clone for FeedEntryEventType
impl Clone for FeedEntryEventType
Source§fn clone(&self) -> FeedEntryEventType
fn clone(&self) -> FeedEntryEventType
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 FeedEntryEventType
impl Debug for FeedEntryEventType
Source§impl Default for FeedEntryEventType
impl Default for FeedEntryEventType
Source§fn default() -> FeedEntryEventType
fn default() -> FeedEntryEventType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeedEntryEventType
impl<'de> Deserialize<'de> for FeedEntryEventType
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 FeedEntryEventType
impl Display for FeedEntryEventType
impl Eq for FeedEntryEventType
Source§impl From<&str> for FeedEntryEventType
impl From<&str> for FeedEntryEventType
Source§impl Hash for FeedEntryEventType
impl Hash for FeedEntryEventType
Source§impl PartialEq for FeedEntryEventType
impl PartialEq for FeedEntryEventType
Source§impl Serialize for FeedEntryEventType
impl Serialize for FeedEntryEventType
impl StructuralPartialEq for FeedEntryEventType
Auto Trait Implementations§
impl Freeze for FeedEntryEventType
impl RefUnwindSafe for FeedEntryEventType
impl Send for FeedEntryEventType
impl Sync for FeedEntryEventType
impl Unpin for FeedEntryEventType
impl UnsafeUnpin for FeedEntryEventType
impl UnwindSafe for FeedEntryEventType
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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.