Struct ciboulette::CibouletteErrorSource[][src]

pub struct CibouletteErrorSource<'request> {
    pub pointer: Option<Cow<'request, str>>,
    pub parameter: Option<Cow<'request, str>>,
    pub header: Option<Cow<'request, str>>,
}

Fields

pointer: Option<Cow<'request, str>>parameter: Option<Cow<'request, str>>header: Option<Cow<'request, str>>

Implementations

impl<'request> CibouletteErrorSource<'request>[src]

pub fn pointer(&self) -> &Option<Cow<'request, str>>[src]

pub fn parameter(&self) -> &Option<Cow<'request, str>>[src]

pub fn header(&self) -> &Option<Cow<'request, str>>[src]

impl<'request> CibouletteErrorSource<'request>[src]

pub fn pointer_mut(&mut self) -> &mut Option<Cow<'request, str>>[src]

pub fn parameter_mut(&mut self) -> &mut Option<Cow<'request, str>>[src]

pub fn header_mut(&mut self) -> &mut Option<Cow<'request, str>>[src]

Trait Implementations

impl<'request> Clone for CibouletteErrorSource<'request>[src]

impl<'request> Debug for CibouletteErrorSource<'request>[src]

impl<'request> Default for CibouletteErrorSource<'request>[src]

impl<'de, 'request> Deserialize<'de> for CibouletteErrorSource<'request>[src]

impl<'request> Serialize for CibouletteErrorSource<'request>[src]

Auto Trait Implementations

impl<'request> RefUnwindSafe for CibouletteErrorSource<'request>

impl<'request> Send for CibouletteErrorSource<'request>

impl<'request> Sync for CibouletteErrorSource<'request>

impl<'request> Unpin for CibouletteErrorSource<'request>

impl<'request> UnwindSafe for CibouletteErrorSource<'request>

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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.