pub struct TreeSnapshot {
pub revision: u64,
pub nodes: Vec<NodeSnapshot>,
}Fields§
§revision: u64§nodes: Vec<NodeSnapshot>Trait Implementations§
Source§impl Clone for TreeSnapshot
impl Clone for TreeSnapshot
Source§fn clone(&self) -> TreeSnapshot
fn clone(&self) -> TreeSnapshot
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 TreeSnapshot
impl Debug for TreeSnapshot
Source§impl Default for TreeSnapshot
impl Default for TreeSnapshot
Source§fn default() -> TreeSnapshot
fn default() -> TreeSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for TreeSnapshot
impl PartialEq for TreeSnapshot
impl StructuralPartialEq for TreeSnapshot
Auto Trait Implementations§
impl Freeze for TreeSnapshot
impl RefUnwindSafe for TreeSnapshot
impl Send for TreeSnapshot
impl Sync for TreeSnapshot
impl Unpin for TreeSnapshot
impl UnsafeUnpin for TreeSnapshot
impl UnwindSafe for TreeSnapshot
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