#[repr(C)]pub struct OptionInfo_UIntInfo {
pub dflt: u64,
pub cur: u64,
pub min: u64,
pub max: u64,
pub has_min: bool,
pub has_max: bool,
}Expand description
Information for uint64 values.
Fields§
§dflt: u64The default value.
cur: u64The current value.
min: u64The minimum value.
max: u64The maximum value.
has_min: boolTrue if option has a minimum value.
has_max: boolTrue if option has a maximum value.
Trait Implementations§
Source§impl Clone for OptionInfo_UIntInfo
impl Clone for OptionInfo_UIntInfo
Source§fn clone(&self) -> OptionInfo_UIntInfo
fn clone(&self) -> OptionInfo_UIntInfo
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 OptionInfo_UIntInfo
impl Debug for OptionInfo_UIntInfo
Source§impl Default for OptionInfo_UIntInfo
impl Default for OptionInfo_UIntInfo
Source§fn default() -> OptionInfo_UIntInfo
fn default() -> OptionInfo_UIntInfo
Returns the “default value” for a type. Read more
impl Copy for OptionInfo_UIntInfo
Auto Trait Implementations§
impl Freeze for OptionInfo_UIntInfo
impl RefUnwindSafe for OptionInfo_UIntInfo
impl Send for OptionInfo_UIntInfo
impl Sync for OptionInfo_UIntInfo
impl Unpin for OptionInfo_UIntInfo
impl UnsafeUnpin for OptionInfo_UIntInfo
impl UnwindSafe for OptionInfo_UIntInfo
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