pub struct SemanticFullMessage<'a> {
pub kind: &'static str,
pub snapshot: &'a Snapshot,
}Expand description
Carries a full tree for one revision.
Fields§
§kind: &'static strWire discriminator (type on the wire).
snapshot: &'a SnapshotThe tree being carried.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for SemanticFullMessage<'a>
impl<'a> Clone for SemanticFullMessage<'a>
Source§fn clone(&self) -> SemanticFullMessage<'a>
fn clone(&self) -> SemanticFullMessage<'a>
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<'a> Debug for SemanticFullMessage<'a>
impl<'a> Debug for SemanticFullMessage<'a>
impl<'a> Eq for SemanticFullMessage<'a>
Source§impl<'a> PartialEq for SemanticFullMessage<'a>
impl<'a> PartialEq for SemanticFullMessage<'a>
Source§impl<'a> Serialize for SemanticFullMessage<'a>
impl<'a> Serialize for SemanticFullMessage<'a>
impl<'a> StructuralPartialEq for SemanticFullMessage<'a>
Auto Trait Implementations§
impl<'a> Freeze for SemanticFullMessage<'a>
impl<'a> RefUnwindSafe for SemanticFullMessage<'a>
impl<'a> Send for SemanticFullMessage<'a>
impl<'a> Sync for SemanticFullMessage<'a>
impl<'a> Unpin for SemanticFullMessage<'a>
impl<'a> UnsafeUnpin for SemanticFullMessage<'a>
impl<'a> UnwindSafe for SemanticFullMessage<'a>
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