pub enum UnsubscribeFromEventsError {
CueSdkError(Option<CueSdkError>),
NoActiveSubscriptionError,
}
Expand description
The error that can be returned from any of the event subscription methods.
Variants§
CueSdkError(Option<CueSdkError>)
NoActiveSubscriptionError
Trait Implementations§
Source§impl Clone for UnsubscribeFromEventsError
impl Clone for UnsubscribeFromEventsError
Source§fn clone(&self) -> UnsubscribeFromEventsError
fn clone(&self) -> UnsubscribeFromEventsError
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 UnsubscribeFromEventsError
impl Debug for UnsubscribeFromEventsError
Source§impl Display for UnsubscribeFromEventsError
impl Display for UnsubscribeFromEventsError
Source§impl Fail for UnsubscribeFromEventsError
impl Fail for UnsubscribeFromEventsError
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 moreAuto Trait Implementations§
impl Freeze for UnsubscribeFromEventsError
impl RefUnwindSafe for UnsubscribeFromEventsError
impl Send for UnsubscribeFromEventsError
impl Sync for UnsubscribeFromEventsError
impl Unpin for UnsubscribeFromEventsError
impl UnwindSafe for UnsubscribeFromEventsError
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