pub enum TargetAddressType {
Physical,
Functional,
}Expand description
Address type used in 29-bit fixed/mixed addressing.
Variants§
Physical
1-to-1 communication (physical addressing).
Functional
1-to-n communication (functional addressing).
Trait Implementations§
Source§impl Clone for TargetAddressType
impl Clone for TargetAddressType
Source§fn clone(&self) -> TargetAddressType
fn clone(&self) -> TargetAddressType
Returns a duplicate 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 TargetAddressType
impl Debug for TargetAddressType
Source§impl PartialEq for TargetAddressType
impl PartialEq for TargetAddressType
impl Copy for TargetAddressType
impl Eq for TargetAddressType
impl StructuralPartialEq for TargetAddressType
Auto Trait Implementations§
impl Freeze for TargetAddressType
impl RefUnwindSafe for TargetAddressType
impl Send for TargetAddressType
impl Sync for TargetAddressType
impl Unpin for TargetAddressType
impl UnsafeUnpin for TargetAddressType
impl UnwindSafe for TargetAddressType
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