pub struct RoutingActivationResponse {
pub logical_address: [u8; 2],
pub source_address: [u8; 2],
pub activation_code: ActivationCode,
pub buffer: [u8; 4],
}Expand description
A response to the RoutingActivationRequest.
Contains the logical address of the recieved DoIP entity along with the activation code.
Fields§
§logical_address: [u8; 2]Logical address of requested entity
source_address: [u8; 2]Source address of response entity
activation_code: ActivationCodeActivation Code
buffer: [u8; 4]ISO reserved buffer
Trait Implementations§
Source§impl Clone for RoutingActivationResponse
impl Clone for RoutingActivationResponse
Source§fn clone(&self) -> RoutingActivationResponse
fn clone(&self) -> RoutingActivationResponse
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 RoutingActivationResponse
impl Debug for RoutingActivationResponse
Source§impl From<RoutingActivationResponse> for [u8; 9]
impl From<RoutingActivationResponse> for [u8; 9]
Source§fn from(value: RoutingActivationResponse) -> Self
fn from(value: RoutingActivationResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<&[u8]> for RoutingActivationResponse
impl TryFrom<&[u8]> for RoutingActivationResponse
impl Copy for RoutingActivationResponse
impl StructuralPartialEq for RoutingActivationResponse
Auto Trait Implementations§
impl Freeze for RoutingActivationResponse
impl RefUnwindSafe for RoutingActivationResponse
impl Send for RoutingActivationResponse
impl Sync for RoutingActivationResponse
impl Unpin for RoutingActivationResponse
impl UnsafeUnpin for RoutingActivationResponse
impl UnwindSafe for RoutingActivationResponse
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