[][src]Enum c3p0_mysql::mysql::driver::uuid::parser::ParseError

pub enum ParseError {
    InvalidCharacter {
        expected: &'static str,
        found: char,
        index: usize,
    },
    InvalidGroupCount {
        expected: Expected,
        found: usize,
    },
    InvalidGroupLength {
        expected: Expected,
        found: usize,
        group: usize,
    },
    InvalidLength {
        expected: Expected,
        found: usize,
    },
}

An error that can occur while parsing a Uuid string.

Variants

InvalidCharacter

Invalid character in the Uuid string.

Fields of InvalidCharacter

expected: &'static str

The expected characters.

found: char

The invalid character found.

index: usize

The invalid character position.

InvalidGroupCount

Invalid number of segments in the Uuid string.

Fields of InvalidGroupCount

expected: Expected

The expected number of segments.

found: usize

The number of segments found.

InvalidGroupLength

Invalid length of a segment in a Uuid string.

Fields of InvalidGroupLength

expected: Expected

The expected length of the segment.

found: usize

The length of segment found.

group: usize

The segment with invalid length.

InvalidLength

Invalid length of the Uuid string.

Fields of InvalidLength

expected: Expected

The expected length(s).

found: usize

The invalid length found.

Trait Implementations

impl Error for ParseError[src]

impl Clone for ParseError[src]

impl PartialOrd<ParseError> for ParseError[src]

impl Ord for ParseError[src]

impl Eq for ParseError[src]

impl From<ParseError> for Error[src]

impl Debug for ParseError[src]

impl Display for ParseError[src]

impl Hash for ParseError[src]

impl Copy for ParseError[src]

impl PartialEq<ParseError> for ParseError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self