pub struct TextSchemaIr {
pub language: Option<String>,
pub min_length: Option<u32>,
pub max_length: Option<u32>,
pub pattern: Option<String>,
pub unknown_fields: IndexMap<String, ValueIr>,
}Fields§
§language: Option<String>§min_length: Option<u32>§max_length: Option<u32>§pattern: Option<String>§unknown_fields: IndexMap<String, ValueIr>Trait Implementations§
Source§impl Clone for TextSchemaIr
impl Clone for TextSchemaIr
Source§fn clone(&self) -> TextSchemaIr
fn clone(&self) -> TextSchemaIr
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 TextSchemaIr
impl Debug for TextSchemaIr
Source§impl PartialEq for TextSchemaIr
impl PartialEq for TextSchemaIr
impl StructuralPartialEq for TextSchemaIr
Auto Trait Implementations§
impl Freeze for TextSchemaIr
impl RefUnwindSafe for TextSchemaIr
impl Send for TextSchemaIr
impl Sync for TextSchemaIr
impl Unpin for TextSchemaIr
impl UnsafeUnpin for TextSchemaIr
impl UnwindSafe for TextSchemaIr
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