pub struct ArraySchema { /* private fields */ }
Expand description
The array schema to describe arrays of homogeneous elements (further information on the module’s documentation).
Contrary to the JSON schema’s array schema tuples are not supported.
Implementations§
Source§impl ArraySchema
impl ArraySchema
pub fn byte_array( length: LengthEncoding<Value>, ) -> Result<Self, ValidationError>
Trait Implementations§
Source§impl Clone for ArraySchema
impl Clone for ArraySchema
Source§fn clone(&self) -> ArraySchema
fn clone(&self) -> ArraySchema
Returns a duplicate of the value. Read more
1.0.0 · 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 ArraySchema
impl Debug for ArraySchema
Source§impl Decoder for ArraySchema
impl Decoder for ArraySchema
Source§impl<'de> Deserialize<'de> for ArraySchema
impl<'de> Deserialize<'de> for ArraySchema
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 Encoder for ArraySchema
impl Encoder for ArraySchema
Source§impl From<ArraySchema> for InnerSchema
impl From<ArraySchema> for InnerSchema
Source§fn from(v: ArraySchema) -> Self
fn from(v: ArraySchema) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArraySchema
impl RefUnwindSafe for ArraySchema
impl Send for ArraySchema
impl Sync for ArraySchema
impl Unpin for ArraySchema
impl UnwindSafe for ArraySchema
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