pub struct DustDensityCallbackThreshold {
pub option: char,
pub min: u16,
pub max: u16,
}
Fields§
§option: char
§min: u16
§max: u16
Trait Implementations§
Source§impl Clone for DustDensityCallbackThreshold
impl Clone for DustDensityCallbackThreshold
Source§fn clone(&self) -> DustDensityCallbackThreshold
fn clone(&self) -> DustDensityCallbackThreshold
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 DustDensityCallbackThreshold
impl Debug for DustDensityCallbackThreshold
Source§impl Default for DustDensityCallbackThreshold
impl Default for DustDensityCallbackThreshold
Source§fn default() -> DustDensityCallbackThreshold
fn default() -> DustDensityCallbackThreshold
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for DustDensityCallbackThreshold
impl FromByteSlice for DustDensityCallbackThreshold
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> DustDensityCallbackThreshold
fn from_le_byte_slice(bytes: &[u8]) -> DustDensityCallbackThreshold
Deserialize the implementing type from a byte slice.
Source§impl Hash for DustDensityCallbackThreshold
impl Hash for DustDensityCallbackThreshold
Source§impl PartialEq for DustDensityCallbackThreshold
impl PartialEq for DustDensityCallbackThreshold
Source§fn eq(&self, other: &DustDensityCallbackThreshold) -> bool
fn eq(&self, other: &DustDensityCallbackThreshold) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for DustDensityCallbackThreshold
impl Eq for DustDensityCallbackThreshold
impl StructuralPartialEq for DustDensityCallbackThreshold
Auto Trait Implementations§
impl Freeze for DustDensityCallbackThreshold
impl RefUnwindSafe for DustDensityCallbackThreshold
impl Send for DustDensityCallbackThreshold
impl Sync for DustDensityCallbackThreshold
impl Unpin for DustDensityCallbackThreshold
impl UnwindSafe for DustDensityCallbackThreshold
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