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