[−][src]Struct rocket_okapi::handlers::ContentHandler
A content handler is a wrapper type around rocket::response::Content
, which can be turned into
a rocket::Route
that serves the content with correct content-type.
Implementations
impl ContentHandler<String>
[src]
pub fn json(content: &impl Serialize) -> Self
[src]
Create a ContentHandler<String>
which serves its content as JSON.
impl ContentHandler<&'static [u8]>
[src]
pub fn bytes(content_type: ContentType, content: &'static [u8]) -> Self
[src]
Create a ContentHandler<&[u8]>
, which serves its content with the specified
content_type
.
impl<R: Responder<'static> + Clone + Send + Sync + 'static> ContentHandler<R>
[src]
pub fn into_route(self, path: impl AsRef<str>) -> Route
[src]
Create a rocket::Route
from the current ContentHandler
.
Trait Implementations
impl<R: Clone + Responder<'static> + Send + Sync + 'static> Clone for ContentHandler<R>
[src]
fn clone(&self) -> ContentHandler<R>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<R: Responder<'static> + Clone + Send + Sync + 'static> Handler for ContentHandler<R>
[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for ContentHandler<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for ContentHandler<R>
impl<R> Sync for ContentHandler<R>
impl<R> Unpin for ContentHandler<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for ContentHandler<R> where
R: UnwindSafe,
R: 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,
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> Cloneable for T where
T: Handler + Clone,
[src]
T: Handler + Clone,
fn clone_handler(&self) -> Box<dyn Handler + 'static>
[src]
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
impl<T> From<T> for T
[src]
impl<F> Handler for F where
F: 'static + Clone + Send + Sync + for<'r> Fn(&'r Request<'_>, Data) -> Outcome<Response<'r>, Status, Data>,
[src]
F: 'static + Clone + Send + Sync + for<'r> Fn(&'r Request<'_>, Data) -> Outcome<Response<'r>, Status, Data>,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
A: Array<Item = T>,
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T> IntoSql for T
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
&'a Self: AsExpression<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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,
T: Any,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,