pub struct ThreadRealtimeItem {
pub id: String,
pub realtime_session_id: String,
pub detail: ThreadRealtimeItemDetail,
}Expand description
EXPERIMENTAL upstream — a thread-scoped realtime item in the canonical timeline (0.148). Top-level identity fields are camelCase on the wire while variant payload fields are snake_case; mirrored exactly.
Fields§
§id: String§realtime_session_id: String§detail: ThreadRealtimeItemDetailTrait Implementations§
Source§impl Clone for ThreadRealtimeItem
impl Clone for ThreadRealtimeItem
Source§fn clone(&self) -> ThreadRealtimeItem
fn clone(&self) -> ThreadRealtimeItem
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 ThreadRealtimeItem
impl Debug for ThreadRealtimeItem
Source§impl<'de> Deserialize<'de> for ThreadRealtimeItem
impl<'de> Deserialize<'de> for ThreadRealtimeItem
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 ThreadRealtimeItem
impl PartialEq for ThreadRealtimeItem
Source§impl Serialize for ThreadRealtimeItem
impl Serialize for ThreadRealtimeItem
impl StructuralPartialEq for ThreadRealtimeItem
Auto Trait Implementations§
impl Freeze for ThreadRealtimeItem
impl RefUnwindSafe for ThreadRealtimeItem
impl Send for ThreadRealtimeItem
impl Sync for ThreadRealtimeItem
impl Unpin for ThreadRealtimeItem
impl UnsafeUnpin for ThreadRealtimeItem
impl UnwindSafe for ThreadRealtimeItem
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