pub enum DiffResponse {
BucketHashes(Vec<Option<Hash>>),
Entries(Vec<(Hash, Hash)>),
}Expand description
Response types for the diff state machine
Variants§
Trait Implementations§
Source§impl Clone for DiffResponse
impl Clone for DiffResponse
Source§fn clone(&self) -> DiffResponse
fn clone(&self) -> DiffResponse
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DiffResponse
impl RefUnwindSafe for DiffResponse
impl Send for DiffResponse
impl Sync for DiffResponse
impl Unpin for DiffResponse
impl UnsafeUnpin for DiffResponse
impl UnwindSafe for DiffResponse
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