pub enum PrerollError {
Cancelled,
TimedOut {
pending: Vec<ElementId>,
},
}Expand description
Failure while waiting for terminal preroll completion.
Variants§
Cancelled
Stop or recovery cancelled the in-flight preroll.
TimedOut
At least one terminal did not receive a first sample in time.
Trait Implementations§
Source§impl Debug for PrerollError
impl Debug for PrerollError
Source§impl Display for PrerollError
impl Display for PrerollError
impl Eq for PrerollError
Source§impl Error for PrerollError
impl Error for PrerollError
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 From<PrerollError> for Error
impl From<PrerollError> for Error
Source§fn from(source: PrerollError) -> Self
fn from(source: PrerollError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PrerollError
impl PartialEq for PrerollError
impl StructuralPartialEq for PrerollError
Auto Trait Implementations§
impl Freeze for PrerollError
impl RefUnwindSafe for PrerollError
impl Send for PrerollError
impl Sync for PrerollError
impl Unpin for PrerollError
impl UnsafeUnpin for PrerollError
impl UnwindSafe for PrerollError
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