pub struct ArrayConstraints {
pub min_items: Option<u64>,
pub max_items: Option<u64>,
pub unique_items: bool,
}Fields§
§min_items: Option<u64>§max_items: Option<u64>§unique_items: boolTrait Implementations§
Source§impl Clone for ArrayConstraints
impl Clone for ArrayConstraints
Source§fn clone(&self) -> ArrayConstraints
fn clone(&self) -> ArrayConstraints
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 moreSource§impl Debug for ArrayConstraints
impl Debug for ArrayConstraints
Source§impl Default for ArrayConstraints
impl Default for ArrayConstraints
Source§fn default() -> ArrayConstraints
fn default() -> ArrayConstraints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArrayConstraints
impl<'de> Deserialize<'de> for ArrayConstraints
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ArrayConstraints
impl PartialEq for ArrayConstraints
Source§fn eq(&self, other: &ArrayConstraints) -> bool
fn eq(&self, other: &ArrayConstraints) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ArrayConstraints
impl Serialize for ArrayConstraints
impl StructuralPartialEq for ArrayConstraints
Auto Trait Implementations§
impl Freeze for ArrayConstraints
impl RefUnwindSafe for ArrayConstraints
impl Send for ArrayConstraints
impl Sync for ArrayConstraints
impl Unpin for ArrayConstraints
impl UnsafeUnpin for ArrayConstraints
impl UnwindSafe for ArrayConstraints
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