pub struct FloatType {
pub default: Option<LiteralValue>,
pub enum_values: Option<Vec<f64>>,
pub format: Option<String>,
pub kind: FloatKind,
pub max: Option<f64>,
pub max_exclusive: Option<f64>,
pub min: Option<f64>,
pub min_exclusive: Option<f64>,
pub multiple_of: Option<f64>,
pub name: Option<String>,
}Fields§
§default: Option<LiteralValue>§enum_values: Option<Vec<f64>>§format: Option<String>§kind: FloatKind§max: Option<f64>§max_exclusive: Option<f64>§min: Option<f64>§min_exclusive: Option<f64>§multiple_of: Option<f64>§name: Option<String>Implementations§
Trait Implementations§
impl StructuralPartialEq for FloatType
Auto Trait Implementations§
impl Freeze for FloatType
impl RefUnwindSafe for FloatType
impl Send for FloatType
impl Sync for FloatType
impl Unpin for FloatType
impl UnwindSafe for FloatType
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