pub enum CommandProcessorInitError {
Backend(BackendError),
DeviceInfo(DeviceInfoError),
Decoder(DecoderLimitsError),
State(DeviceStateConfigError),
}Variants§
Backend(BackendError)
DeviceInfo(DeviceInfoError)
Decoder(DecoderLimitsError)
State(DeviceStateConfigError)
Trait Implementations§
Source§impl Clone for CommandProcessorInitError
impl Clone for CommandProcessorInitError
Source§fn clone(&self) -> CommandProcessorInitError
fn clone(&self) -> CommandProcessorInitError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CommandProcessorInitError
Source§impl Debug for CommandProcessorInitError
impl Debug for CommandProcessorInitError
impl Eq for CommandProcessorInitError
impl StructuralPartialEq for CommandProcessorInitError
Auto Trait Implementations§
impl Freeze for CommandProcessorInitError
impl RefUnwindSafe for CommandProcessorInitError
impl Send for CommandProcessorInitError
impl Sync for CommandProcessorInitError
impl Unpin for CommandProcessorInitError
impl UnsafeUnpin for CommandProcessorInitError
impl UnwindSafe for CommandProcessorInitError
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