pub struct UtpCableStatus {
pub polarity: bool,
pub pair: u8,
pub skew: u32,
pub length: u32,
}Expand description
The diagnostic status of a single UTP cable pair.
Fields§
§polarity: boolWhether the pair is wired with normal polarity.
pair: u8Which pair this describes.
skew: u32Measured skew.
length: u32Measured length.
Trait Implementations§
Source§impl Clone for UtpCableStatus
impl Clone for UtpCableStatus
Source§fn clone(&self) -> UtpCableStatus
fn clone(&self) -> UtpCableStatus
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 moreimpl Copy for UtpCableStatus
Source§impl Debug for UtpCableStatus
impl Debug for UtpCableStatus
Source§impl Default for UtpCableStatus
impl Default for UtpCableStatus
Source§fn default() -> UtpCableStatus
fn default() -> UtpCableStatus
Returns the “default value” for a type. Read more
impl Eq for UtpCableStatus
Source§impl PartialEq for UtpCableStatus
impl PartialEq for UtpCableStatus
impl StructuralPartialEq for UtpCableStatus
Auto Trait Implementations§
impl Freeze for UtpCableStatus
impl RefUnwindSafe for UtpCableStatus
impl Send for UtpCableStatus
impl Sync for UtpCableStatus
impl Unpin for UtpCableStatus
impl UnsafeUnpin for UtpCableStatus
impl UnwindSafe for UtpCableStatus
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