pub struct PutCheckpoint {
pub trace_id: Uuid,
pub checkpoint_id: CheckpointId,
pub node_idx: NodeIdx,
pub label: Option<String>,
pub time: OffsetDateTime,
pub result: Result<(), String>,
}
Fields§
§trace_id: Uuid
§checkpoint_id: CheckpointId
§node_idx: NodeIdx
§label: Option<String>
§time: OffsetDateTime
§result: Result<(), String>
Trait Implementations§
Source§impl Channels<TraceProtocol> for PutCheckpoint
impl Channels<TraceProtocol> for PutCheckpoint
Source§impl Clone for PutCheckpoint
impl Clone for PutCheckpoint
Source§fn clone(&self) -> PutCheckpoint
fn clone(&self) -> PutCheckpoint
Returns a copy of the value. Read more
1.0.0 · 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 PutCheckpoint
impl Debug for PutCheckpoint
Source§impl<'de> Deserialize<'de> for PutCheckpoint
impl<'de> Deserialize<'de> for PutCheckpoint
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 From<PutCheckpoint> for TraceProtocol
impl From<PutCheckpoint> for TraceProtocol
Source§fn from(value: PutCheckpoint) -> Self
fn from(value: PutCheckpoint) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PutCheckpoint
impl RefUnwindSafe for PutCheckpoint
impl Send for PutCheckpoint
impl Sync for PutCheckpoint
impl Unpin for PutCheckpoint
impl UnwindSafe for PutCheckpoint
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