pub enum VDef {
Scalar,
Struct(VStructDef),
}Expand description
Type-specific definition for verified shapes.
Variants§
Scalar
A scalar type (no internal structure to track).
Struct(VStructDef)
A struct with indexed fields.
Trait Implementations§
impl Copy for VDef
impl Eq for VDef
impl StructuralPartialEq for VDef
Auto Trait Implementations§
impl Freeze for VDef
impl RefUnwindSafe for VDef
impl Send for VDef
impl Sync for VDef
impl Unpin for VDef
impl UnsafeUnpin for VDef
impl UnwindSafe for VDef
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