pub struct BinList {
pub vtype: BinType,
/* private fields */
}Expand description
List of values, variable size
This type is used for both BinType::List and BinType::List2.
Fields§
§vtype: BinTypeType of values in the list
Implementations§
Trait Implementations§
Source§impl<BV: BinVisitor + ?Sized> BinTraversal<BV> for BinList
impl<BV: BinVisitor + ?Sized> BinTraversal<BV> for BinList
Auto Trait Implementations§
impl !RefUnwindSafe for BinList
impl !Send for BinList
impl !Sync for BinList
impl !UnwindSafe for BinList
impl Freeze for BinList
impl Unpin for BinList
impl UnsafeUnpin for BinList
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