pub enum DltSysError {
LoadExceeded,
FileSizeError,
LoggingDisabled,
UserBufferFull,
WrongParameter,
BufferFull,
PipeFull,
PipeError,
Error,
Unknown,
}Expand description
DLT return value error types (from libdlt C library)
Variants§
LoadExceeded
Only available with the trace_load_ctrl feature enabled.
FileSizeError
LoggingDisabled
UserBufferFull
WrongParameter
BufferFull
PipeFull
PipeError
Error
Unknown
Trait Implementations§
Source§impl Clone for DltSysError
impl Clone for DltSysError
Source§fn clone(&self) -> DltSysError
fn clone(&self) -> DltSysError
Returns a copy 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 DltSysError
impl Debug for DltSysError
Source§impl Display for DltSysError
impl Display for DltSysError
Source§impl Error for DltSysError
impl Error for DltSysError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DltSysError
impl PartialEq for DltSysError
impl Copy for DltSysError
impl Eq for DltSysError
impl StructuralPartialEq for DltSysError
Auto Trait Implementations§
impl Freeze for DltSysError
impl RefUnwindSafe for DltSysError
impl Send for DltSysError
impl Sync for DltSysError
impl Unpin for DltSysError
impl UnwindSafe for DltSysError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.