paperclip_core::v2::models

Struct Parameter

source
pub struct Parameter<S> {
Show 23 fields pub description: Option<String>, pub in_: ParameterIn, pub name: String, pub required: bool, pub schema: Option<S>, pub data_type: Option<DataType>, pub format: Option<DataTypeFormat>, pub items: Option<Items>, pub collection_format: Option<CollectionFormat>, pub allow_empty_value: bool, pub default: Option<Value>, pub maximum: Option<f32>, pub exclusive_maximum: Option<bool>, pub minimum: Option<f32>, pub exclusive_minimum: Option<bool>, pub max_length: Option<u32>, pub min_length: Option<u32>, pub pattern: Option<String>, pub max_items: Option<u32>, pub min_items: Option<u32>, pub unique_items: bool, pub multiple_of: Option<f32>, pub enum_: Vec<Value>,
}
Expand description

Fields§

§description: Option<String>§in_: ParameterIn§name: String§required: bool§schema: Option<S>§data_type: Option<DataType>§format: Option<DataTypeFormat>§items: Option<Items>§collection_format: Option<CollectionFormat>§allow_empty_value: bool§default: Option<Value>§maximum: Option<f32>§exclusive_maximum: Option<bool>§minimum: Option<f32>§exclusive_minimum: Option<bool>§max_length: Option<u32>§min_length: Option<u32>§pattern: Option<String>§max_items: Option<u32>§min_items: Option<u32>§unique_items: bool§multiple_of: Option<f32>§enum_: Vec<Value>

Implementations§

source§

impl<S> Parameter<Resolvable<S>>
where S: Schema,

source

pub fn check(&self, path: &str) -> Result<(), ValidationError>

Checks the validity of this parameter using the relative URL path it’s associated with.

Trait Implementations§

source§

impl<S: Clone> Clone for Parameter<S>

source§

fn clone(&self) -> Parameter<S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S: Debug> Debug for Parameter<S>

source§

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

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

impl<S: Default> Default for Parameter<S>

source§

fn default() -> Parameter<S>

Returns the “default value” for a type. Read more
source§

impl<'de, S> Deserialize<'de> for Parameter<S>
where S: 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 From<Parameter<DefaultSchemaRaw>> for Either<Parameter, Either<RequestBody, Option<Schema>>>

source§

fn from(v2: DefaultParameterRaw) -> Self

Converts to this type from the input type.
source§

impl<S: PartialEq> PartialEq for Parameter<S>

source§

fn eq(&self, other: &Parameter<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<S> Serialize for Parameter<S>
where S: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<S> StructuralPartialEq for Parameter<S>

Auto Trait Implementations§

§

impl<S> Freeze for Parameter<S>
where S: Freeze,

§

impl<S> RefUnwindSafe for Parameter<S>
where S: RefUnwindSafe,

§

impl<S> Send for Parameter<S>
where S: Send,

§

impl<S> Sync for Parameter<S>
where S: Sync,

§

impl<S> Unpin for Parameter<S>
where S: Unpin,

§

impl<S> UnwindSafe for Parameter<S>
where S: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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 T
where 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 for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

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 T
where U: TryFrom<T>,

source§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

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 T
where T: for<'de> Deserialize<'de>,