pub enum PaneSemanticReplayError {
InvalidTrace(PaneSemanticInputTraceError),
Machine(PaneDragResizeMachineError),
}Expand description
Replay runner failures.
Variants§
InvalidTrace(PaneSemanticInputTraceError)
Machine(PaneDragResizeMachineError)
Trait Implementations§
Source§impl Clone for PaneSemanticReplayError
impl Clone for PaneSemanticReplayError
Source§fn clone(&self) -> PaneSemanticReplayError
fn clone(&self) -> PaneSemanticReplayError
Returns a duplicate of the value. Read more
1.0.0 · 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 PaneSemanticReplayError
impl Debug for PaneSemanticReplayError
Source§impl Display for PaneSemanticReplayError
impl Display for PaneSemanticReplayError
Source§impl Error for PaneSemanticReplayError
impl Error for PaneSemanticReplayError
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 PaneSemanticReplayError
impl PartialEq for PaneSemanticReplayError
impl Eq for PaneSemanticReplayError
impl StructuralPartialEq for PaneSemanticReplayError
Auto Trait Implementations§
impl Freeze for PaneSemanticReplayError
impl RefUnwindSafe for PaneSemanticReplayError
impl Send for PaneSemanticReplayError
impl Sync for PaneSemanticReplayError
impl Unpin for PaneSemanticReplayError
impl UnsafeUnpin for PaneSemanticReplayError
impl UnwindSafe for PaneSemanticReplayError
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