Enum rocket::data::Transform[][src]

pub enum Transform<T, B = T> {
    Owned(T),
    Borrowed(B),
}
Expand description

Indicates how incoming data should be transformed before being parsed and validated by a data guard.

See the documentation for FromData for usage details.

Variants

Owned(T)

Indicates that data should be or has been transformed into the FromData::Owned variant.

Borrowed(B)

Indicates that data should be or has been transformed into the FromData::Borrowed variant.

Implementations

impl<T, B> Transform<T, B>[src]

pub fn owned(self) -> T[src]

Returns the Owned value if self is Owned.

Panics

Panics if self is Borrowed.

Example

use rocket::data::Transform;

let owned: Transform<usize, &[usize]> = Transform::Owned(10);
assert_eq!(owned.owned(), 10);

pub fn borrowed(self) -> B[src]

Returns the Borrowed value if self is Borrowed.

Panics

Panics if self is Owned.

use rocket::data::Transform;

let borrowed: Transform<usize, &[usize]> = Transform::Borrowed(&[10]);
assert_eq!(borrowed.borrowed(), &[10]);

Auto Trait Implementations

impl<T, B> RefUnwindSafe for Transform<T, B> where
    B: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, B> Send for Transform<T, B> where
    B: Send,
    T: Send

impl<T, B> Sync for Transform<T, B> where
    B: Sync,
    T: Sync

impl<T, B> Unpin for Transform<T, B> where
    B: Unpin,
    T: Unpin

impl<T, B> UnwindSafe for Transform<T, B> where
    B: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T, I> AsResult<T, I> for T where
    I: Input
[src]

pub fn as_result(self) -> Result<T, ParseErr<I>>[src]

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

pub fn into_collection<A>(self) -> SmallVec<A> where
    A: Array<Item = T>, 
[src]

Converts self into a collection.

pub fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
    F: FnMut(T) -> U,
    A: Array<Item = U>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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

pub fn vzip(self) -> V