[−][src]Enum rocket::data::Transform
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
Indicates that data should be or has been transformed into the
FromData::Owned
variant.
Indicates that data should be or has been transformed into the
FromData::Borrowed
variant.
Methods
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,
B: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, B> Send for Transform<T, B> where
B: Send,
T: Send,
B: Send,
T: Send,
impl<T, B> Sync for Transform<T, B> where
B: Sync,
T: Sync,
B: Sync,
T: Sync,
impl<T, B> Unpin for Transform<T, B> where
B: Unpin,
T: Unpin,
B: Unpin,
T: Unpin,
impl<T, B> UnwindSafe for Transform<T, B> where
B: UnwindSafe,
T: UnwindSafe,
B: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, I> AsResult<T, I> for T where
I: Input,
[src]
I: Input,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoCollection<T> for T
[src]
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
[src]
A: Array<Item = T>,
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
[src]
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Typeable for T where
T: Any,
[src]
T: Any,