pub struct KvDeviceRangeSegment {
pub device: String,
pub category: KvDeviceRangeCategory,
pub is_bit_device: bool,
pub notation: KvDeviceRangeNotation,
pub lower_bound: u32,
pub upper_bound: Option<u32>,
pub point_count: Option<u32>,
pub address_range: String,
}Fields§
§device: String§category: KvDeviceRangeCategory§is_bit_device: bool§notation: KvDeviceRangeNotation§lower_bound: u32§upper_bound: Option<u32>§point_count: Option<u32>§address_range: StringTrait Implementations§
Source§impl Clone for KvDeviceRangeSegment
impl Clone for KvDeviceRangeSegment
Source§fn clone(&self) -> KvDeviceRangeSegment
fn clone(&self) -> KvDeviceRangeSegment
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 KvDeviceRangeSegment
impl Debug for KvDeviceRangeSegment
Source§impl PartialEq for KvDeviceRangeSegment
impl PartialEq for KvDeviceRangeSegment
Source§fn eq(&self, other: &KvDeviceRangeSegment) -> bool
fn eq(&self, other: &KvDeviceRangeSegment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for KvDeviceRangeSegment
impl StructuralPartialEq for KvDeviceRangeSegment
Auto Trait Implementations§
impl Freeze for KvDeviceRangeSegment
impl RefUnwindSafe for KvDeviceRangeSegment
impl Send for KvDeviceRangeSegment
impl Sync for KvDeviceRangeSegment
impl Unpin for KvDeviceRangeSegment
impl UnsafeUnpin for KvDeviceRangeSegment
impl UnwindSafe for KvDeviceRangeSegment
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.