Enum nu_errors::ExpectedRange [−][src]
pub enum ExpectedRange {
}Expand description
ExpectedRange describes a range of values that was expected by a command. In addition
to typical ranges, this enum allows an error to specify that the range of allowed values
corresponds to a particular numeric type (which is a dominant use-case for the
RangeError error type).
Variants
Trait Implementations
impl Clone for ExpectedRange[src]
impl Clone for ExpectedRange[src]fn clone(&self) -> ExpectedRange[src]
fn clone(&self) -> ExpectedRange[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for ExpectedRange[src]
impl Debug for ExpectedRange[src]impl<'de> Deserialize<'de> for ExpectedRange[src]
impl<'de> Deserialize<'de> for ExpectedRange[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl From<Range<usize>> for ExpectedRange[src]
impl From<Range<usize>> for ExpectedRange[src]Convert a Rust range into an ExpectedRange.
impl Hash for ExpectedRange[src]
impl Hash for ExpectedRange[src]impl Ord for ExpectedRange[src]
impl Ord for ExpectedRange[src]impl PartialEq<ExpectedRange> for ExpectedRange[src]
impl PartialEq<ExpectedRange> for ExpectedRange[src]fn eq(&self, other: &ExpectedRange) -> bool[src]
fn eq(&self, other: &ExpectedRange) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &ExpectedRange) -> bool[src]
fn ne(&self, other: &ExpectedRange) -> bool[src]This method tests for !=.
impl PartialOrd<ExpectedRange> for ExpectedRange[src]
impl PartialOrd<ExpectedRange> for ExpectedRange[src]fn partial_cmp(&self, other: &ExpectedRange) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &ExpectedRange) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl PrettyDebug for ExpectedRange[src]
impl PrettyDebug for ExpectedRange[src]fn pretty(&self) -> DebugDocBuilder[src]
fn to_doc(&self) -> DebugDoc[src]
fn pretty_doc(
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>[src]
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>
fn pretty_builder(&self) -> DocBuilder<'static, BoxAllocator, ShellAnnotation>[src]
fn display(&self) -> String[src]
fn display(&self) -> String[src]A convenience method that prints out the document without colors in 70 columns. Generally, you should use plain_string or colored_string if possible, but display() can be useful for trace lines and things like that, where you don’t have control over the terminal. Read more
fn plain_string(&self, width: usize) -> String[src]
fn colored_string(&self, width: usize) -> String[src]
impl Serialize for ExpectedRange[src]
impl Serialize for ExpectedRange[src]impl Eq for ExpectedRange[src]
impl StructuralEq for ExpectedRange[src]
impl StructuralPartialEq for ExpectedRange[src]
Auto Trait Implementations
impl RefUnwindSafe for ExpectedRange
impl Send for ExpectedRange
impl Sync for ExpectedRange
impl Unpin for ExpectedRange
impl UnwindSafe for ExpectedRange
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]pub fn pretty_debug(&self, _source: &str) -> DebugDocBuilder[src]
fn refined_pretty_debug(
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder[src]
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder
fn debug(&self, source: impl Into<Text>) -> String where
Self: Clone, [src]
Self: Clone,
fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self>[src]
impl<T> SpannedItem for T[src]
impl<T> SpannedItem for T[src]impl<T> TaggedItem for T[src]
impl<T> TaggedItem for T[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,