#[repr(C)]pub struct ListDef {
pub vtable: &'static ListVTable,
pub t: fn() -> &'static Shape,
}
Expand description
Fields for list types
Fields§
§vtable: &'static ListVTable
vtable for interacting with the list
t: fn() -> &'static Shape
shape of the items in the list
Implementations§
Trait Implementations§
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