Struct schematic_types::IntegerType
source · pub struct IntegerType {
pub enum_values: Option<Vec<isize>>,
pub format: Option<String>,
pub kind: IntegerKind,
pub max: Option<usize>,
pub max_exclusive: Option<usize>,
pub min: Option<usize>,
pub min_exclusive: Option<usize>,
pub multiple_of: Option<usize>,
pub name: Option<String>,
}Fields§
§enum_values: Option<Vec<isize>>§format: Option<String>§kind: IntegerKind§max: Option<usize>§max_exclusive: Option<usize>§min: Option<usize>§min_exclusive: Option<usize>§multiple_of: Option<usize>§name: Option<String>Trait Implementations§
source§impl Clone for IntegerType
impl Clone for IntegerType
source§fn clone(&self) -> IntegerType
fn clone(&self) -> IntegerType
Returns a copy 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 IntegerType
impl Debug for IntegerType
source§impl Default for IntegerType
impl Default for IntegerType
source§fn default() -> IntegerType
fn default() -> IntegerType
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for IntegerType
impl Send for IntegerType
impl Sync for IntegerType
impl Unpin for IntegerType
impl UnwindSafe for IntegerType
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