#[non_exhaustive]pub struct ParamFieldDescriptor {
pub key: String,
pub schema: SchemaContract,
pub required: bool,
}Expand description
Opt-in per-field parameter declaration on an interaction. Declared fields get strict typed parsing on GET query strings and per-field body validation on mutating methods; undeclared keys pass through untyped.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key: String§schema: SchemaContract§required: boolImplementations§
Source§impl ParamFieldDescriptor
impl ParamFieldDescriptor
pub fn new( key: impl Into<String>, schema: SchemaContract, ) -> ParamFieldDescriptor
pub fn required(self) -> ParamFieldDescriptor
Trait Implementations§
Source§impl Clone for ParamFieldDescriptor
impl Clone for ParamFieldDescriptor
Source§fn clone(&self) -> ParamFieldDescriptor
fn clone(&self) -> ParamFieldDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParamFieldDescriptor
impl Debug for ParamFieldDescriptor
Source§impl<'de> Deserialize<'de> for ParamFieldDescriptor
impl<'de> Deserialize<'de> for ParamFieldDescriptor
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ParamFieldDescriptor, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ParamFieldDescriptor, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ParamFieldDescriptor
Source§impl PartialEq for ParamFieldDescriptor
impl PartialEq for ParamFieldDescriptor
Source§impl Serialize for ParamFieldDescriptor
impl Serialize for ParamFieldDescriptor
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ParamFieldDescriptor
Auto Trait Implementations§
impl Freeze for ParamFieldDescriptor
impl RefUnwindSafe for ParamFieldDescriptor
impl Send for ParamFieldDescriptor
impl Sync for ParamFieldDescriptor
impl Unpin for ParamFieldDescriptor
impl UnsafeUnpin for ParamFieldDescriptor
impl UnwindSafe for ParamFieldDescriptor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.