pub enum ArrayItems {
Scalar(Box<FieldType>),
Object(Vec<FieldDef>),
Untyped,
}Variants§
Trait Implementations§
Source§impl Clone for ArrayItems
impl Clone for ArrayItems
Source§fn clone(&self) -> ArrayItems
fn clone(&self) -> ArrayItems
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ArrayItems
impl RefUnwindSafe for ArrayItems
impl Send for ArrayItems
impl Sync for ArrayItems
impl Unpin for ArrayItems
impl UnsafeUnpin for ArrayItems
impl UnwindSafe for ArrayItems
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