pub struct JsonBody<T>(pub T);
Expand description

Represents the parameters passed by the URI path.

Tuple Fields§

§0: T

Implementations§

source§

impl<T> JsonBody<T>

source

pub fn into_inner(self) -> T

Consumes self and returns the value of the parameter.

Trait Implementations§

source§

impl<T> Debug for JsonBody<T>where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Deref for JsonBody<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> DerefMut for JsonBody<T>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<'de, T> Deserialize<'de> for JsonBody<T>where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> Display for JsonBody<T>where T: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, T> EndpointArgRegister for JsonBody<T>where T: Deserialize<'de> + ToSchema,

source§

fn register(components: &mut Components, operation: &mut Operation, _arg: &str)

Modify the OpenApi components section or current operation information with given argument. This function is called by macros internal.
source§

impl<'de, T> Extractible<'de> for JsonBody<T>where T: Deserialize<'de> + Send,

source§

fn metadata() -> &'de Metadata

Metadata for Extractible type.
source§

fn extract<'async_trait>( req: &'de mut Request ) -> Pin<Box<dyn Future<Output = Result<Self, ParseError>> + Send + 'async_trait>>where Self: 'async_trait, 'de: 'async_trait,

Extract data from request.
source§

fn extract_with_arg<'life0, 'async_trait>( req: &'de mut Request, _arg: &'life0 str ) -> Pin<Box<dyn Future<Output = Result<Self, ParseError>> + Send + 'async_trait>>where Self: 'async_trait, 'de: 'async_trait, 'life0: 'async_trait,

Extract data from request with a argument. This function used in macros internal.
source§

impl<'de, T> ToRequestBody for JsonBody<T>where T: Deserialize<'de> + ToSchema,

source§

fn to_request_body(components: &mut Components) -> RequestBody

Returns RequestBody.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for JsonBody<T>where T: RefUnwindSafe,

§

impl<T> Send for JsonBody<T>where T: Send,

§

impl<T> Sync for JsonBody<T>where T: Sync,

§

impl<T> Unpin for JsonBody<T>where T: Unpin,

§

impl<T> UnwindSafe for JsonBody<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

§

impl<T> Formattable for Twhere T: Deref, <T as Deref>::Target: Formattable,

§

impl<T> Parsable for Twhere T: Deref, <T as Deref>::Target: Parsable,