pub struct ArrayKeys {
pub items: Box<Items>,
pub min_items: Option<usize>,
pub max_items: Option<usize>,
pub unique_items: Option<bool>,
}
Expand description
Keywords for an array type property.
Fields§
§items: Box<Items>
§min_items: Option<usize>
§max_items: Option<usize>
§unique_items: Option<bool>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArrayKeys
impl RefUnwindSafe for ArrayKeys
impl Send for ArrayKeys
impl Sync for ArrayKeys
impl Unpin for ArrayKeys
impl UnwindSafe for ArrayKeys
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