pub enum RealtimePreparationError<E> {
Selection(RealtimeSelectionError),
Payload(E),
Modules(E),
State(E),
Queue(E),
Group(E),
}Expand description
Failure during selection or one post-selection construction stage.
Variants§
Selection(RealtimeSelectionError)
Neutral selection rejected before every construction callback.
Payload(E)
Checkpoint payload construction failed.
Modules(E)
Architecture module construction failed.
State(E)
Mutable model-state construction failed.
Queue(E)
Execution queue construction failed.
Group(E)
Communication group construction failed.
Trait Implementations§
Source§impl<E: Debug> Debug for RealtimePreparationError<E>
impl<E: Debug> Debug for RealtimePreparationError<E>
Source§impl<E> Display for RealtimePreparationError<E>
impl<E> Display for RealtimePreparationError<E>
Source§impl<E> Error for RealtimePreparationError<E>
impl<E> Error for RealtimePreparationError<E>
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<E> From<RealtimeSelectionError> for RealtimePreparationError<E>
impl<E> From<RealtimeSelectionError> for RealtimePreparationError<E>
Source§fn from(source: RealtimeSelectionError) -> Self
fn from(source: RealtimeSelectionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for RealtimePreparationError<E>where
E: Freeze,
impl<E> RefUnwindSafe for RealtimePreparationError<E>where
E: RefUnwindSafe,
impl<E> Send for RealtimePreparationError<E>where
E: Send,
impl<E> Sync for RealtimePreparationError<E>where
E: Sync,
impl<E> Unpin for RealtimePreparationError<E>where
E: Unpin,
impl<E> UnsafeUnpin for RealtimePreparationError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for RealtimePreparationError<E>where
E: UnwindSafe,
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