pub enum CompletionDeliveryError {
Failed,
DeadlineExceeded,
}Expand description
Completion callback delivery error (safe).
Variants§
Trait Implementations§
Source§impl Clone for CompletionDeliveryError
impl Clone for CompletionDeliveryError
Source§fn clone(&self) -> CompletionDeliveryError
fn clone(&self) -> CompletionDeliveryError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompletionDeliveryError
impl Debug for CompletionDeliveryError
Source§impl Display for CompletionDeliveryError
impl Display for CompletionDeliveryError
impl Eq for CompletionDeliveryError
Source§impl Error for CompletionDeliveryError
impl Error for CompletionDeliveryError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for CompletionDeliveryError
impl PartialEq for CompletionDeliveryError
impl StructuralPartialEq for CompletionDeliveryError
Auto Trait Implementations§
impl Freeze for CompletionDeliveryError
impl RefUnwindSafe for CompletionDeliveryError
impl Send for CompletionDeliveryError
impl Sync for CompletionDeliveryError
impl Unpin for CompletionDeliveryError
impl UnsafeUnpin for CompletionDeliveryError
impl UnwindSafe for CompletionDeliveryError
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