pub struct SlmpDeviceRangeEntry {
pub device: String,
pub category: SlmpDeviceRangeCategory,
pub is_bit_device: bool,
pub supported: bool,
pub lower_bound: u32,
pub upper_bound: Option<u32>,
pub point_count: Option<u32>,
pub address_range: Option<String>,
pub notation: SlmpDeviceRangeNotation,
pub source: String,
pub notes: Option<String>,
}Fields§
§device: String§category: SlmpDeviceRangeCategory§is_bit_device: bool§supported: bool§lower_bound: u32§upper_bound: Option<u32>§point_count: Option<u32>§address_range: Option<String>§notation: SlmpDeviceRangeNotation§source: String§notes: Option<String>Trait Implementations§
Source§impl Clone for SlmpDeviceRangeEntry
impl Clone for SlmpDeviceRangeEntry
Source§fn clone(&self) -> SlmpDeviceRangeEntry
fn clone(&self) -> SlmpDeviceRangeEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SlmpDeviceRangeEntry
impl Debug for SlmpDeviceRangeEntry
Source§impl<'de> Deserialize<'de> for SlmpDeviceRangeEntry
impl<'de> Deserialize<'de> for SlmpDeviceRangeEntry
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
Source§impl PartialEq for SlmpDeviceRangeEntry
impl PartialEq for SlmpDeviceRangeEntry
Source§fn eq(&self, other: &SlmpDeviceRangeEntry) -> bool
fn eq(&self, other: &SlmpDeviceRangeEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SlmpDeviceRangeEntry
impl Serialize for SlmpDeviceRangeEntry
impl Eq for SlmpDeviceRangeEntry
impl StructuralPartialEq for SlmpDeviceRangeEntry
Auto Trait Implementations§
impl Freeze for SlmpDeviceRangeEntry
impl RefUnwindSafe for SlmpDeviceRangeEntry
impl Send for SlmpDeviceRangeEntry
impl Sync for SlmpDeviceRangeEntry
impl Unpin for SlmpDeviceRangeEntry
impl UnsafeUnpin for SlmpDeviceRangeEntry
impl UnwindSafe for SlmpDeviceRangeEntry
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