pub struct MoveDetail {
pub source: Vec<u8>,
pub destination: Vec<u8>,
pub skipped: bool,
}Fields§
§source: Vec<u8>§destination: Vec<u8>§skipped: boolTrait Implementations§
Source§impl Clone for MoveDetail
impl Clone for MoveDetail
Source§fn clone(&self) -> MoveDetail
fn clone(&self) -> MoveDetail
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 MoveDetail
impl Debug for MoveDetail
impl Eq for MoveDetail
Source§impl PartialEq for MoveDetail
impl PartialEq for MoveDetail
Source§fn eq(&self, other: &MoveDetail) -> bool
fn eq(&self, other: &MoveDetail) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MoveDetail
Auto Trait Implementations§
impl Freeze for MoveDetail
impl RefUnwindSafe for MoveDetail
impl Send for MoveDetail
impl Sync for MoveDetail
impl Unpin for MoveDetail
impl UnsafeUnpin for MoveDetail
impl UnwindSafe for MoveDetail
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