#[repr(C, u8)]pub enum LogicalRectVecDestructor {
DefaultRust,
NoDestructor,
External(LogicalRectVecDestructorType),
AlreadyDestroyed,
}Variants§
DefaultRust
NoDestructor
External(LogicalRectVecDestructorType)
AlreadyDestroyed
Destructor was already run — prevents double-free. Set by Drop impl after destruction.
Trait Implementations§
Source§impl Clone for LogicalRectVecDestructor
impl Clone for LogicalRectVecDestructor
Source§fn clone(&self) -> LogicalRectVecDestructor
fn clone(&self) -> LogicalRectVecDestructor
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 moreimpl Copy for LogicalRectVecDestructor
Auto Trait Implementations§
impl Freeze for LogicalRectVecDestructor
impl RefUnwindSafe for LogicalRectVecDestructor
impl Send for LogicalRectVecDestructor
impl Sync for LogicalRectVecDestructor
impl Unpin for LogicalRectVecDestructor
impl UnsafeUnpin for LogicalRectVecDestructor
impl UnwindSafe for LogicalRectVecDestructor
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