pub struct ArraySchema { /* private fields */ }Expand description
A schema for an array
Implementations§
Source§impl ArraySchema
impl ArraySchema
Sourcepub fn new(items: SchemaType) -> Self
pub fn new(items: SchemaType) -> Self
Create a new array schema
Sourcepub fn with_length(
self,
length: impl Into<Option<RangeInclusive<usize>>>,
) -> Self
pub fn with_length( self, length: impl Into<Option<RangeInclusive<usize>>>, ) -> Self
Set the length range of the array
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
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