pub enum PaneDragResizeMachineError {
InvalidDragThreshold {
threshold: u16,
},
InvalidUpdateHysteresis {
hysteresis: u16,
},
InvalidEvent(PaneSemanticInputEventError),
}Expand description
Lifecycle machine configuration/runtime errors.
Variants§
Trait Implementations§
Source§impl Clone for PaneDragResizeMachineError
impl Clone for PaneDragResizeMachineError
Source§fn clone(&self) -> PaneDragResizeMachineError
fn clone(&self) -> PaneDragResizeMachineError
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 PaneDragResizeMachineError
impl Debug for PaneDragResizeMachineError
Source§impl Display for PaneDragResizeMachineError
impl Display for PaneDragResizeMachineError
Source§impl Error for PaneDragResizeMachineError
impl Error for PaneDragResizeMachineError
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()
impl Eq for PaneDragResizeMachineError
impl StructuralPartialEq for PaneDragResizeMachineError
Auto Trait Implementations§
impl Freeze for PaneDragResizeMachineError
impl RefUnwindSafe for PaneDragResizeMachineError
impl Send for PaneDragResizeMachineError
impl Sync for PaneDragResizeMachineError
impl Unpin for PaneDragResizeMachineError
impl UnsafeUnpin for PaneDragResizeMachineError
impl UnwindSafe for PaneDragResizeMachineError
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