Struct someip_messages::Header

source ·
pub struct Header {
    pub message_id: MessageId,
    pub length: u32,
    pub request_id: RequestId,
    pub protocol_version: ProtocolVersion,
    pub interface_version: InterfaceVersion,
    pub message_type: MessageType,
    pub return_code: ReturnCode,
}
Expand description

Represents the header of a SOME/IP message.

Fields§

§message_id: MessageId

Message id

§length: u32

Message length

§request_id: RequestId

Request id

§protocol_version: ProtocolVersion

Protocol version

§interface_version: InterfaceVersion

Interface version

§message_type: MessageType

Message type

§return_code: ReturnCode

Return code

Implementations§

source§

impl Header

source

pub fn from_slice(input: &[u8]) -> Result<Header, Error>

Parse a header from a byte slice.

source

pub fn from_reader<R: Read>(reader: &mut R) -> Result<Header, Error>

Parse a header from a Read

source§

impl Header

source

pub fn to_vec(&self) -> Vec<u8>

Serializes the header into a byte array.

source

pub fn to_writer<W: Write>(&self, writer: W) -> Result<usize, Error>

Serialize the header into a writer.

source§

impl Header

source

pub fn new( message_id: MessageId, length: u32, request_id: RequestId, protocol_version: ProtocolVersion, interface_version: InterfaceVersion, message_type: MessageType, return_code: ReturnCode ) -> Self

Creates a new header with the given message id, length, request id, protocol version, interface version, message type and return code.

source

pub fn message_id(&self) -> &MessageId

Get message id

source

pub fn length(&self) -> u32

Raw length field

source

pub fn message_len(&self) -> usize

The length of the message associated with the header

source

pub fn payload_len(&self) -> usize

The length of the payload associated with the header

source

pub fn request_id(&self) -> &RequestId

Get request id

source

pub fn client_id(&self) -> ClientId

Get client id

source

pub fn session_id(&self) -> SessionId

Get session id

source

pub fn protocol_version(&self) -> ProtocolVersion

Get protocol version

source

pub fn interface_version(&self) -> InterfaceVersion

Get interface version

source

pub fn message_type(&self) -> MessageType

Get message type

source

pub fn return_code(&self) -> ReturnCode

Get return code

source

pub fn is_sd(&self) -> bool

Returns true if the header indicates a SD message

Trait Implementations§

source§

impl Clone for Header

source§

fn clone(&self) -> Header

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Header

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Length for Header

Provides the fixed length of a Header

source§

const LENGTH: usize = 16usize

Fixed length

source§

impl PartialEq<Header> for Header

source§

fn eq(&self, other: &Header) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Header

source§

impl StructuralEq for Header

source§

impl StructuralPartialEq for Header

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.