pub enum ZoomLevelError {
GreaterOrEqualViolated,
LessOrEqualViolated,
}Variants§
Trait Implementations§
Source§impl Clone for ZoomLevelError
impl Clone for ZoomLevelError
Source§fn clone(&self) -> ZoomLevelError
fn clone(&self) -> ZoomLevelError
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 ZoomLevelError
impl Debug for ZoomLevelError
Source§impl Display for ZoomLevelError
impl Display for ZoomLevelError
Source§impl Error for ZoomLevelError
impl Error for ZoomLevelError
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<ZoomLevelError> for ZoomFitError
impl From<ZoomLevelError> for ZoomFitError
Source§fn from(source: ZoomLevelError) -> Self
fn from(source: ZoomLevelError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ZoomLevelError
impl PartialEq for ZoomLevelError
impl Eq for ZoomLevelError
impl StructuralPartialEq for ZoomLevelError
Auto Trait Implementations§
impl Freeze for ZoomLevelError
impl RefUnwindSafe for ZoomLevelError
impl Send for ZoomLevelError
impl Sync for ZoomLevelError
impl Unpin for ZoomLevelError
impl UnwindSafe for ZoomLevelError
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