pub struct IntEntry {
pub default_value: Option<i32>,
pub max: Option<i32>,
pub min: Option<i32>,
}Expand description
Expected int entry
Fields§
§default_value: Option<i32>§max: Option<i32>§min: Option<i32>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IntEntry
impl<'de> Deserialize<'de> for IntEntry
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
impl StructuralPartialEq for IntEntry
Auto Trait Implementations§
impl Freeze for IntEntry
impl RefUnwindSafe for IntEntry
impl Send for IntEntry
impl Sync for IntEntry
impl Unpin for IntEntry
impl UnwindSafe for IntEntry
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