pub enum RealtimePrepublicationError<C, O> {
Completion(C),
Observation(Arc<O>),
}Expand description
Exact-completion or host-observation failure before session publication.
Variants§
Completion(C)
Native completion readiness or validation failed.
Observation(Arc<O>)
Host conversion or output validation failed and was cached exactly once.
Trait Implementations§
Source§impl<C, O> Display for RealtimePrepublicationError<C, O>
impl<C, O> Display for RealtimePrepublicationError<C, O>
Source§impl<C, O> Error for RealtimePrepublicationError<C, O>
impl<C, O> Error for RealtimePrepublicationError<C, O>
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()
Auto Trait Implementations§
impl<C, O> Freeze for RealtimePrepublicationError<C, O>
impl<C, O> RefUnwindSafe for RealtimePrepublicationError<C, O>
impl<C, O> Send for RealtimePrepublicationError<C, O>
impl<C, O> Sync for RealtimePrepublicationError<C, O>
impl<C, O> Unpin for RealtimePrepublicationError<C, O>
impl<C, O> UnsafeUnpin for RealtimePrepublicationError<C, O>
impl<C, O> UnwindSafe for RealtimePrepublicationError<C, O>
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