[][src]Struct async_coap_uri::ParseError

pub struct ParseError { /* fields omitted */ }

URI parse error type.

This type indicates the details of an error that occurs while parsing a URI.

Methods

impl ParseError[src]

pub fn new(desc: &'static str, span: Option<Range<usize>>) -> ParseError[src]

Constructor for URI parse errors.

pub fn span(&self) -> Option<Range<usize>>[src]

The location in the input string of the error. Optional.

pub fn desc(&self) -> &'static str[src]

A debugging description of the error.

Trait Implementations

impl PartialEq<ParseError> for ParseError[src]

impl Clone for ParseError[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for ParseError[src]

impl Debug for ParseError[src]

impl Hash for ParseError[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]