pub struct ValidifiedByRef<E>(pub E);
Expand description
§ValidifiedByRef
data extractor
ValidifiedByRef
is similar to Validified
, but operates via reference.
Suitable for inner extractors not based on serde
.
Tuple Fields§
§0: E
Implementations§
Source§impl<E> ValidifiedByRef<E>
impl<E> ValidifiedByRef<E>
Sourcepub fn into_inner(self) -> E
pub fn into_inner(self) -> E
Consumes the ValidifiedByRef
and returns the modified and validated data within.
This returns the E
type which represents the data that has been
successfully validated.
Trait Implementations§
Source§impl<E: Clone> Clone for ValidifiedByRef<E>
impl<E: Clone> Clone for ValidifiedByRef<E>
Source§fn clone(&self) -> ValidifiedByRef<E>
fn clone(&self) -> ValidifiedByRef<E>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<E: Debug> Debug for ValidifiedByRef<E>
impl<E: Debug> Debug for ValidifiedByRef<E>
Source§impl<E: Default> Default for ValidifiedByRef<E>
impl<E: Default> Default for ValidifiedByRef<E>
Source§fn default() -> ValidifiedByRef<E>
fn default() -> ValidifiedByRef<E>
Returns the “default value” for a type. Read more
Source§impl<E> Deref for ValidifiedByRef<E>
impl<E> Deref for ValidifiedByRef<E>
Source§impl<E> DerefMut for ValidifiedByRef<E>
impl<E> DerefMut for ValidifiedByRef<E>
Source§impl<T: Display> Display for ValidifiedByRef<T>
impl<T: Display> Display for ValidifiedByRef<T>
Source§impl<State, Extractor> FromRequest<State> for ValidifiedByRef<Extractor>where
State: Send + Sync,
Extractor: HasValidate + HasModify + FromRequest<State>,
Extractor::Validate: Validate,
impl<State, Extractor> FromRequest<State> for ValidifiedByRef<Extractor>where
State: Send + Sync,
Extractor: HasValidate + HasModify + FromRequest<State>,
Extractor::Validate: Validate,
Source§type Rejection = ValidationRejection<ValidationErrors, <Extractor as FromRequest<State>>::Rejection>
type Rejection = ValidationRejection<ValidationErrors, <Extractor as FromRequest<State>>::Rejection>
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
Source§impl<State, Extractor> FromRequestParts<State> for ValidifiedByRef<Extractor>where
State: Send + Sync,
Extractor: HasValidate + HasModify + FromRequestParts<State>,
Extractor::Validate: Validate,
impl<State, Extractor> FromRequestParts<State> for ValidifiedByRef<Extractor>where
State: Send + Sync,
Extractor: HasValidate + HasModify + FromRequestParts<State>,
Extractor::Validate: Validate,
Source§type Rejection = ValidationRejection<ValidationErrors, <Extractor as FromRequestParts<State>>::Rejection>
type Rejection = ValidationRejection<ValidationErrors, <Extractor as FromRequestParts<State>>::Rejection>
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
Source§impl<T> OperationInput for ValidifiedByRef<T>where
T: OperationInput,
impl<T> OperationInput for ValidifiedByRef<T>where
T: OperationInput,
Source§fn operation_input(ctx: &mut GenContext, operation: &mut Operation)
fn operation_input(ctx: &mut GenContext, operation: &mut Operation)
Modify the operation. Read more
Source§fn inferred_early_responses(
ctx: &mut GenContext,
operation: &mut Operation,
) -> Vec<(Option<u16>, Response)>
fn inferred_early_responses( ctx: &mut GenContext, operation: &mut Operation, ) -> Vec<(Option<u16>, Response)>
Inferred early responses are used to document early returns for
extractors, guards inside handlers. For example these could represent
JSON parsing errors, authentication failures. Read more
Source§impl<T: TypedPath + Display> TypedPath for ValidifiedByRef<T>
impl<T: TypedPath + Display> TypedPath for ValidifiedByRef<T>
Source§fn with_query_params<T>(self, params: T) -> WithQueryParams<Self, T>
fn with_query_params<T>(self, params: T) -> WithQueryParams<Self, T>
Add query parameters to a path. Read more
impl<E: Copy> Copy for ValidifiedByRef<E>
Auto Trait Implementations§
impl<E> Freeze for ValidifiedByRef<E>where
E: Freeze,
impl<E> RefUnwindSafe for ValidifiedByRef<E>where
E: RefUnwindSafe,
impl<E> Send for ValidifiedByRef<E>where
E: Send,
impl<E> Sync for ValidifiedByRef<E>where
E: Sync,
impl<E> Unpin for ValidifiedByRef<E>where
E: Unpin,
impl<E> UnwindSafe for ValidifiedByRef<E>where
E: UnwindSafe,
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,
Source§impl<S, T> FromRequest<S, ViaParts> for T
impl<S, T> FromRequest<S, ViaParts> for T
Source§type Rejection = <T as FromRequestParts<S>>::Rejection
type Rejection = <T as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
Source§fn from_request(
req: Request<Body>,
state: &S,
) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
fn from_request( req: Request<Body>, state: &S, ) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
Perform the extraction.
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string()
Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read moreSource§impl<T> ValidateIp for Twhere
T: ToString,
impl<T> ValidateIp for Twhere
T: ToString,
Source§fn validate_ipv4(&self) -> bool
fn validate_ipv4(&self) -> bool
Validates whether the given string is an IP V4
Source§fn validate_ipv6(&self) -> bool
fn validate_ipv6(&self) -> bool
Validates whether the given string is an IP V6
Source§fn validate_ip(&self) -> bool
fn validate_ip(&self) -> bool
Validates whether the given string is an IP