#[repr(C)]pub struct SetVTable {
pub init_in_place_with_capacity: SetInitInPlaceWithCapacityFn,
pub insert: SetInsertFn,
pub len: SetLenFn,
pub contains: SetContainsFn,
pub iter_vtable: IterVTable<PtrConst>,
}Expand description
Virtual table for a Set<T>
Fields§
§init_in_place_with_capacity: SetInitInPlaceWithCapacityFn§insert: SetInsertFncf. SetInsertFn
len: SetLenFncf. SetLenFn
contains: SetContainsFncf. SetContainsFn
iter_vtable: IterVTable<PtrConst>Virtual table for set iterator operations
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetVTable
impl RefUnwindSafe for SetVTable
impl Send for SetVTable
impl Sync for SetVTable
impl Unpin for SetVTable
impl UnwindSafe for SetVTable
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