pub struct WireSessionTranscriptRevisionEntry {
pub revision: String,
pub parent_revision: String,
pub actor: Option<String>,
pub reason: String,
pub committed_at: u64,
}Expand description
One transcript rewrite commit in canonical wire format.
Fields§
§revision: String§parent_revision: String§actor: Option<String>§reason: StringDisplay projection of the typed rewrite reason.
committed_at: u64Commit timestamp as seconds since the Unix epoch.
Trait Implementations§
Source§impl Clone for WireSessionTranscriptRevisionEntry
impl Clone for WireSessionTranscriptRevisionEntry
Source§fn clone(&self) -> WireSessionTranscriptRevisionEntry
fn clone(&self) -> WireSessionTranscriptRevisionEntry
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<'de> Deserialize<'de> for WireSessionTranscriptRevisionEntry
impl<'de> Deserialize<'de> for WireSessionTranscriptRevisionEntry
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
impl Eq for WireSessionTranscriptRevisionEntry
Source§impl PartialEq for WireSessionTranscriptRevisionEntry
impl PartialEq for WireSessionTranscriptRevisionEntry
Source§fn eq(&self, other: &WireSessionTranscriptRevisionEntry) -> bool
fn eq(&self, other: &WireSessionTranscriptRevisionEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WireSessionTranscriptRevisionEntry
Auto Trait Implementations§
impl Freeze for WireSessionTranscriptRevisionEntry
impl RefUnwindSafe for WireSessionTranscriptRevisionEntry
impl Send for WireSessionTranscriptRevisionEntry
impl Sync for WireSessionTranscriptRevisionEntry
impl Unpin for WireSessionTranscriptRevisionEntry
impl UnsafeUnpin for WireSessionTranscriptRevisionEntry
impl UnwindSafe for WireSessionTranscriptRevisionEntry
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.