pub struct KvDeviceRangeEntry {Show 13 fields
pub device: String,
pub device_type: String,
pub category: KvDeviceRangeCategory,
pub is_bit_device: bool,
pub notation: KvDeviceRangeNotation,
pub supported: bool,
pub lower_bound: u32,
pub upper_bound: Option<u32>,
pub point_count: Option<u32>,
pub address_range: Option<String>,
pub source: String,
pub notes: Option<String>,
pub segments: Vec<KvDeviceRangeSegment>,
}Fields§
§device: String§device_type: String§category: KvDeviceRangeCategory§is_bit_device: bool§notation: KvDeviceRangeNotation§supported: bool§lower_bound: u32§upper_bound: Option<u32>§point_count: Option<u32>§address_range: Option<String>§source: String§notes: Option<String>§segments: Vec<KvDeviceRangeSegment>Trait Implementations§
Source§impl Clone for KvDeviceRangeEntry
impl Clone for KvDeviceRangeEntry
Source§fn clone(&self) -> KvDeviceRangeEntry
fn clone(&self) -> KvDeviceRangeEntry
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 KvDeviceRangeEntry
impl Debug for KvDeviceRangeEntry
Source§impl PartialEq for KvDeviceRangeEntry
impl PartialEq for KvDeviceRangeEntry
Source§fn eq(&self, other: &KvDeviceRangeEntry) -> bool
fn eq(&self, other: &KvDeviceRangeEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for KvDeviceRangeEntry
impl StructuralPartialEq for KvDeviceRangeEntry
Auto Trait Implementations§
impl Freeze for KvDeviceRangeEntry
impl RefUnwindSafe for KvDeviceRangeEntry
impl Send for KvDeviceRangeEntry
impl Sync for KvDeviceRangeEntry
impl Unpin for KvDeviceRangeEntry
impl UnsafeUnpin for KvDeviceRangeEntry
impl UnwindSafe for KvDeviceRangeEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.