pub enum GetAllDevicesError {
GetDeviceCountError(Option<CueSdkError>),
GetDeviceAtIndexErrors(Vec<GetDeviceAtIndexError>),
}
Expand description
The error that can be returned from the get_all_devices
method.
Variants§
GetDeviceCountError(Option<CueSdkError>)
GetDeviceAtIndexErrors(Vec<GetDeviceAtIndexError>)
Trait Implementations§
Source§impl Clone for GetAllDevicesError
impl Clone for GetAllDevicesError
Source§fn clone(&self) -> GetAllDevicesError
fn clone(&self) -> GetAllDevicesError
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 GetAllDevicesError
impl Debug for GetAllDevicesError
Source§impl Display for GetAllDevicesError
impl Display for GetAllDevicesError
Source§impl Fail for GetAllDevicesError
impl Fail for GetAllDevicesError
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 GetAllDevicesError
impl PartialEq for GetAllDevicesError
impl StructuralPartialEq for GetAllDevicesError
Auto Trait Implementations§
impl Freeze for GetAllDevicesError
impl RefUnwindSafe for GetAllDevicesError
impl Send for GetAllDevicesError
impl Sync for GetAllDevicesError
impl Unpin for GetAllDevicesError
impl UnwindSafe for GetAllDevicesError
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