pub enum ChannelsFromFfiError {
InvalidChannelsCount(i32),
NullChannelsPointer,
ChannelFromFFIErrors(Vec<ChannelFromFfiError>),
}Expand description
The various errors that can happen when reading all of the channels in a given DeviceInfo from the
iCUE SDK.
Variants§
Trait Implementations§
Source§impl Clone for ChannelsFromFfiError
impl Clone for ChannelsFromFfiError
Source§fn clone(&self) -> ChannelsFromFfiError
fn clone(&self) -> ChannelsFromFfiError
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 ChannelsFromFfiError
impl Debug for ChannelsFromFfiError
Source§impl Display for ChannelsFromFfiError
impl Display for ChannelsFromFfiError
Source§impl Fail for ChannelsFromFfiError
impl Fail for ChannelsFromFfiError
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 ChannelsFromFfiError
impl PartialEq for ChannelsFromFfiError
impl StructuralPartialEq for ChannelsFromFfiError
Auto Trait Implementations§
impl Freeze for ChannelsFromFfiError
impl RefUnwindSafe for ChannelsFromFfiError
impl Send for ChannelsFromFfiError
impl Sync for ChannelsFromFfiError
impl Unpin for ChannelsFromFfiError
impl UnwindSafe for ChannelsFromFfiError
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