#[non_exhaustive]#[repr(C)]pub struct ListDef {
pub vtable: &'static ListVTable,
pub t: fn() -> &'static Shape,
}Expand description
Fields for list types
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.vtable: &'static ListVTablevtable for interacting with the list
t: fn() -> &'static Shapeshape of the items in the list
Implementations§
Trait Implementations§
impl Copy for ListDef
impl Eq for ListDef
impl StructuralPartialEq for ListDef
Auto Trait Implementations§
impl Freeze for ListDef
impl RefUnwindSafe for ListDef
impl Send for ListDef
impl Sync for ListDef
impl Unpin for ListDef
impl UnwindSafe for ListDef
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