Enum someip_messages::ReturnCode
source · pub enum ReturnCode {
}
Expand description
Different kinds of ReturnCode accepted in a header.
Variants§
Ok
No error occurred
NotOk
An unspecified error occurred
UnknownService
The requested Service ID is unknown.
UnknownMethod
The requested Method ID is unknown. Service ID is known.
NotReady
Service ID and Method ID are known. Application not running.
NotReachable
System running the service is not reachable (internal error code only).
Timeout
A timeout occurred (internal error code only).
WrongProtocolVersion
Version of SOME/IP protocol not supported
WrongInterfaceVersion
Interface version mismatch
MalformedMessage
Deserialization error, so that payload cannot be deserialized.
WrongMessageType
An unexpected message type was received (e.g. REQUEST_NO_RETURN for a method defined as REQUEST.)
ReservedGeneric(u8)
Reserved for generic SOME/IP errors. These errors will be specified in future versions of this document.
ReservedSpecific(u8)
Reserved for specific errors of services and meth- ods. These errors are specified by the interface specification.
Trait Implementations§
source§impl Clone for ReturnCode
impl Clone for ReturnCode
source§fn clone(&self) -> ReturnCode
fn clone(&self) -> ReturnCode
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReturnCode
impl Debug for ReturnCode
source§impl From<ReturnCode> for u8
impl From<ReturnCode> for u8
Transforms a ReturnCode to a u8 representing the type.
source§fn from(i: ReturnCode) -> Self
fn from(i: ReturnCode) -> Self
source§impl Hash for ReturnCode
impl Hash for ReturnCode
source§impl PartialEq<ReturnCode> for ReturnCode
impl PartialEq<ReturnCode> for ReturnCode
source§fn eq(&self, other: &ReturnCode) -> bool
fn eq(&self, other: &ReturnCode) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u8> for ReturnCode
impl TryFrom<u8> for ReturnCode
Transforms a u8 representing the type to a ReturnCode.