pub struct DropRecord {
pub value_index: usize,
pub is_dropped: bool,
pub drop_spot: LocalSpot,
pub prop_chain: Vec<usize>,
pub has_dropped_field: bool,
}Fields§
§value_index: usize§is_dropped: bool§drop_spot: LocalSpot§prop_chain: Vec<usize>§has_dropped_field: boolImplementations§
Trait Implementations§
Source§impl Clone for DropRecord
impl Clone for DropRecord
Source§fn clone(&self) -> DropRecord
fn clone(&self) -> DropRecord
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 DropRecord
impl RefUnwindSafe for DropRecord
impl Send for DropRecord
impl Sync for DropRecord
impl Unpin for DropRecord
impl UnwindSafe for DropRecord
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