pub enum SdWriteError {
IoError(Error),
UnexpectedEndOfSlice(usize),
ValueError(SdValueError),
}Expand description
Errors that can occur when serializing a someip & tp header.
Variants§
IoError(Error)
UnexpectedEndOfSlice(usize)
The slice length was not large enough to write the header.
ValueError(SdValueError)
Error in the data that was attempted to be written
Trait Implementations§
Source§impl Debug for SdWriteError
impl Debug for SdWriteError
Source§impl From<Error> for SdWriteError
impl From<Error> for SdWriteError
Source§fn from(err: Error) -> SdWriteError
fn from(err: Error) -> SdWriteError
Converts to this type from the input type.
Source§impl From<SdValueError> for SdWriteError
impl From<SdValueError> for SdWriteError
Source§fn from(err: SdValueError) -> SdWriteError
fn from(err: SdValueError) -> SdWriteError
Converts to this type from the input type.