pub enum ControlTimelinePushError {
InvalidControl(InvalidControlValue),
Late {
absolute_frame: u64,
render_frame: u64,
},
Duplicate {
absolute_frame: u64,
sequence: u64,
},
NonMonotonicFrame {
previous: u64,
incoming: u64,
},
NonMonotonicSequence {
previous: u64,
incoming: u64,
},
Full {
capacity: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for ControlTimelinePushError
impl Clone for ControlTimelinePushError
Source§fn clone(&self) -> ControlTimelinePushError
fn clone(&self) -> ControlTimelinePushError
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 moreimpl Copy for ControlTimelinePushError
Source§impl Debug for ControlTimelinePushError
impl Debug for ControlTimelinePushError
Source§impl Display for ControlTimelinePushError
impl Display for ControlTimelinePushError
impl Eq for ControlTimelinePushError
Source§impl Error for ControlTimelinePushError
impl Error for ControlTimelinePushError
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 ControlTimelinePushError
impl PartialEq for ControlTimelinePushError
impl StructuralPartialEq for ControlTimelinePushError
Auto Trait Implementations§
impl Freeze for ControlTimelinePushError
impl RefUnwindSafe for ControlTimelinePushError
impl Send for ControlTimelinePushError
impl Sync for ControlTimelinePushError
impl Unpin for ControlTimelinePushError
impl UnsafeUnpin for ControlTimelinePushError
impl UnwindSafe for ControlTimelinePushError
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