pub enum GetLedsError {
GetPositionsError(GetLedPositionsError),
GetColorsError(GetLedColorsError),
}Expand description
The error that can occur when getting led information fails for a given CueDevice.
Variants§
GetPositionsError(GetLedPositionsError)
GetColorsError(GetLedColorsError)
Trait Implementations§
Source§impl Clone for GetLedsError
impl Clone for GetLedsError
Source§fn clone(&self) -> GetLedsError
fn clone(&self) -> GetLedsError
Returns a duplicate 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 GetLedsError
impl Debug for GetLedsError
Source§impl Display for GetLedsError
impl Display for GetLedsError
Source§impl Fail for GetLedsError
impl Fail for GetLedsError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl PartialEq for GetLedsError
impl PartialEq for GetLedsError
impl StructuralPartialEq for GetLedsError
Auto Trait Implementations§
impl Freeze for GetLedsError
impl RefUnwindSafe for GetLedsError
impl Send for GetLedsError
impl Sync for GetLedsError
impl Unpin for GetLedsError
impl UnwindSafe for GetLedsError
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