pub enum DriverInteractionError {
CncCreatedButNotInitialised {
file_name: String,
},
CncNotCreated {
file_name: String,
},
Inactive,
NoHeartbeatDetected,
NoResponse(u64),
WasInactive(u64),
}
Variants§
CncCreatedButNotInitialised
CncNotCreated
Inactive
NoHeartbeatDetected
NoResponse(u64)
WasInactive(u64)
Trait Implementations§
Source§impl Debug for DriverInteractionError
impl Debug for DriverInteractionError
Source§impl Display for DriverInteractionError
impl Display for DriverInteractionError
Source§impl Error for DriverInteractionError
impl Error for DriverInteractionError
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 From<DriverInteractionError> for AeronError
impl From<DriverInteractionError> for AeronError
Source§fn from(source: DriverInteractionError) -> Self
fn from(source: DriverInteractionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DriverInteractionError
impl RefUnwindSafe for DriverInteractionError
impl Send for DriverInteractionError
impl Sync for DriverInteractionError
impl Unpin for DriverInteractionError
impl UnwindSafe for DriverInteractionError
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