pub struct ArrayType {
pub contains: Option<bool>,
pub items_type: Box<Schema>,
pub max_contains: Option<usize>,
pub max_length: Option<usize>,
pub min_contains: Option<usize>,
pub min_length: Option<usize>,
pub unique: Option<bool>,
}Fields§
§contains: Option<bool>§items_type: Box<Schema>§max_contains: Option<usize>§max_length: Option<usize>§min_contains: Option<usize>§min_length: Option<usize>§unique: Option<bool>Implementations§
Trait Implementations§
impl StructuralPartialEq for ArrayType
Auto Trait Implementations§
impl Freeze for ArrayType
impl RefUnwindSafe for ArrayType
impl Send for ArrayType
impl Sync for ArrayType
impl Unpin for ArrayType
impl UnwindSafe for ArrayType
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