pub struct DeltaResult {
pub added: Vec<MemoryId>,
pub removed: Vec<MemoryId>,
pub unchanged: Vec<MemoryId>,
}Expand description
Result of computing a delta between two context sets.
Fields§
§added: Vec<MemoryId>§removed: Vec<MemoryId>§unchanged: Vec<MemoryId>Trait Implementations§
Source§impl Clone for DeltaResult
impl Clone for DeltaResult
Source§fn clone(&self) -> DeltaResult
fn clone(&self) -> DeltaResult
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 DeltaResult
impl RefUnwindSafe for DeltaResult
impl Send for DeltaResult
impl Sync for DeltaResult
impl Unpin for DeltaResult
impl UnsafeUnpin for DeltaResult
impl UnwindSafe for DeltaResult
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