[][src]Struct actix_cbor::Cbor

pub struct Cbor<T>(pub T);

Extractor/Responder for CBOR encoded data.

This will encode data with the content-type application/cbor.

By default, it expects to receive data with that content-type as well.

Example

use actix_cbor::Cbor;

struct User {
    name: String,
}
struct Greeting {
    inner: String,
}

#[get("/users/hello")]
pub async fn greet_user(user: Cbor<User>) -> Cbor<Greeting> {
    let name: &str = &user.name;
    let inner: String = format!("Hello {}!", name);
    Cbor(Greeting { inner })
}

Implementations

impl<T> Cbor<T>[src]

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

Deconstruct to an inner value

Trait Implementations

impl<T> Debug for Cbor<T> where
    T: Debug
[src]

impl<T> Deref for Cbor<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Cbor<T>[src]

impl<T> FromRequest for Cbor<T> where
    T: DeserializeOwned + 'static, 
[src]

type Error = Error

The associated error which can be returned.

type Future = LocalBoxFuture<'static, Result<Self, Self::Error>>

Future that resolves to a Self

type Config = CborConfig

Configuration for this extractor

impl<T> Responder for Cbor<T> where
    T: Serialize
[src]

type Error = CborError

The associated error which can be returned.

type Future = Ready<Result<Response, Self::Error>>

The future response value.

Auto Trait Implementations

impl<T> RefUnwindSafe for Cbor<T> where
    T: RefUnwindSafe

impl<T> Send for Cbor<T> where
    T: Send

impl<T> Sync for Cbor<T> where
    T: Sync

impl<T> Unpin for Cbor<T> where
    T: Unpin

impl<T> UnwindSafe for Cbor<T> where
    T: UnwindSafe

Blanket Implementations

impl<T, A, P> Access<T> for P where
    A: Access<T>,
    P: Deref<Target = A>, 
[src]

type Guard = <A as Access<T>>::Guard

A guard object containing the value and keeping it alive. Read more

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, A> DynAccess<T> for A where
    A: Access<T>,
    <A as Access<T>>::Guard: 'static, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,