pub struct NewConsoleFrame {Show 17 fields
pub id: Option<String>,
pub dedupe_key: String,
pub timestamp_ms: u64,
pub runtime_key: String,
pub identity: String,
pub conversation_id: Option<String>,
pub session_id: Option<String>,
pub kind: String,
pub status: ConsoleFrameStatus,
pub payload: Value,
pub source: ConsoleFrameSource,
pub source_event_id: Option<String>,
pub interaction_id: Option<String>,
pub turn_id: Option<String>,
pub run_id: Option<String>,
pub parent_frame_id: Option<String>,
pub caused_by_frame_id: Option<String>,
}Fields§
§id: Option<String>§dedupe_key: String§timestamp_ms: u64§runtime_key: String§identity: String§conversation_id: Option<String>§session_id: Option<String>§kind: String§status: ConsoleFrameStatus§payload: Value§source: ConsoleFrameSource§source_event_id: Option<String>§interaction_id: Option<String>§turn_id: Option<String>§run_id: Option<String>§parent_frame_id: Option<String>§caused_by_frame_id: Option<String>Trait Implementations§
Source§impl Clone for NewConsoleFrame
impl Clone for NewConsoleFrame
Source§fn clone(&self) -> NewConsoleFrame
fn clone(&self) -> NewConsoleFrame
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 NewConsoleFrame
impl Debug for NewConsoleFrame
Source§impl<'de> Deserialize<'de> for NewConsoleFrame
impl<'de> Deserialize<'de> for NewConsoleFrame
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 PartialEq for NewConsoleFrame
impl PartialEq for NewConsoleFrame
Source§fn eq(&self, other: &NewConsoleFrame) -> bool
fn eq(&self, other: &NewConsoleFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NewConsoleFrame
impl Serialize for NewConsoleFrame
impl StructuralPartialEq for NewConsoleFrame
Auto Trait Implementations§
impl Freeze for NewConsoleFrame
impl RefUnwindSafe for NewConsoleFrame
impl Send for NewConsoleFrame
impl Sync for NewConsoleFrame
impl Unpin for NewConsoleFrame
impl UnsafeUnpin for NewConsoleFrame
impl UnwindSafe for NewConsoleFrame
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more