pub struct InvalidIterations(/* private fields */);Expand description
An error return indicating an invalid number of iterations. The string is a human-readable message describing the valid iterations. It should not be interpreted by programs.
Trait Implementations§
Source§impl Clone for InvalidIterations
impl Clone for InvalidIterations
Source§fn clone(&self) -> InvalidIterations
fn clone(&self) -> InvalidIterations
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 moreSource§impl Debug for InvalidIterations
impl Debug for InvalidIterations
Source§impl Hash for InvalidIterations
impl Hash for InvalidIterations
Source§impl Ord for InvalidIterations
impl Ord for InvalidIterations
Source§fn cmp(&self, other: &InvalidIterations) -> Ordering
fn cmp(&self, other: &InvalidIterations) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InvalidIterations
impl PartialEq for InvalidIterations
Source§fn eq(&self, other: &InvalidIterations) -> bool
fn eq(&self, other: &InvalidIterations) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for InvalidIterations
impl PartialOrd for InvalidIterations
impl Eq for InvalidIterations
impl StructuralPartialEq for InvalidIterations
Auto Trait Implementations§
impl Freeze for InvalidIterations
impl RefUnwindSafe for InvalidIterations
impl Send for InvalidIterations
impl Sync for InvalidIterations
impl Unpin for InvalidIterations
impl UnsafeUnpin for InvalidIterations
impl UnwindSafe for InvalidIterations
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