pub struct AliveCheckResponse {
pub source_address: [u8; 2],
}Expand description
Confirmation of the AliveCheckRequest.
The typical response from an AliveCheckRequest.
Fields§
§source_address: [u8; 2]The source address of the responding DoIP Entity
Trait Implementations§
Source§impl Clone for AliveCheckResponse
impl Clone for AliveCheckResponse
Source§fn clone(&self) -> AliveCheckResponse
fn clone(&self) -> AliveCheckResponse
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 AliveCheckResponse
impl Debug for AliveCheckResponse
Source§impl From<AliveCheckResponse> for [u8; 2]
impl From<AliveCheckResponse> for [u8; 2]
Source§fn from(value: AliveCheckResponse) -> Self
fn from(value: AliveCheckResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AliveCheckResponse
impl PartialEq for AliveCheckResponse
Source§impl TryFrom<&[u8]> for AliveCheckResponse
impl TryFrom<&[u8]> for AliveCheckResponse
impl Copy for AliveCheckResponse
impl StructuralPartialEq for AliveCheckResponse
Auto Trait Implementations§
impl Freeze for AliveCheckResponse
impl RefUnwindSafe for AliveCheckResponse
impl Send for AliveCheckResponse
impl Sync for AliveCheckResponse
impl Unpin for AliveCheckResponse
impl UnsafeUnpin for AliveCheckResponse
impl UnwindSafe for AliveCheckResponse
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