pub enum GetPropertyError {
NoPropertyLookupSupport {
property_type: String,
property_key_name: String,
property_key_value: u32,
},
SdkErr(Option<CueSdkError>),
}Expand description
The error that can be returned when we fail to get a BooleanProperty on a CueDevice.
Variants§
NoPropertyLookupSupport
SdkErr(Option<CueSdkError>)
Trait Implementations§
Source§impl Clone for GetPropertyError
impl Clone for GetPropertyError
Source§fn clone(&self) -> GetPropertyError
fn clone(&self) -> GetPropertyError
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 GetPropertyError
impl Debug for GetPropertyError
Source§impl Display for GetPropertyError
impl Display for GetPropertyError
Source§impl Fail for GetPropertyError
impl Fail for GetPropertyError
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 GetPropertyError
impl PartialEq for GetPropertyError
impl StructuralPartialEq for GetPropertyError
Auto Trait Implementations§
impl Freeze for GetPropertyError
impl RefUnwindSafe for GetPropertyError
impl Send for GetPropertyError
impl Sync for GetPropertyError
impl Unpin for GetPropertyError
impl UnwindSafe for GetPropertyError
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