pub struct SessionNodeRecord {
pub node_id: String,
pub parent_node_id: Option<String>,
pub caused_by: Option<CausalRef>,
pub agent_frame_id: Option<AgentFrameId>,
pub timestamp: String,
pub payload: SessionNodePayload,
}Fields§
§node_id: String§parent_node_id: Option<String>§caused_by: Option<CausalRef>§agent_frame_id: Option<AgentFrameId>§timestamp: String§payload: SessionNodePayloadImplementations§
Trait Implementations§
Source§impl Clone for SessionNodeRecord
impl Clone for SessionNodeRecord
Source§fn clone(&self) -> SessionNodeRecord
fn clone(&self) -> SessionNodeRecord
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 SessionNodeRecord
impl Debug for SessionNodeRecord
Source§impl<'de> Deserialize<'de> for SessionNodeRecord
impl<'de> Deserialize<'de> for SessionNodeRecord
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
Auto Trait Implementations§
impl Freeze for SessionNodeRecord
impl RefUnwindSafe for SessionNodeRecord
impl Send for SessionNodeRecord
impl Sync for SessionNodeRecord
impl Unpin for SessionNodeRecord
impl UnsafeUnpin for SessionNodeRecord
impl UnwindSafe for SessionNodeRecord
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