Struct FuncValidatorAllocations
pub struct FuncValidatorAllocations(/* private fields */);Expand description
External handle to the internal allocations used during function validation.
This is created with either the Default implementation or with
FuncValidator::into_allocations. It is then passed as an argument to
FuncToValidate::into_validator to provide a means of reusing allocations
between each function.
Trait Implementations§
§impl Default for FuncValidatorAllocations
impl Default for FuncValidatorAllocations
§fn default() -> FuncValidatorAllocations
fn default() -> FuncValidatorAllocations
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FuncValidatorAllocations
impl RefUnwindSafe for FuncValidatorAllocations
impl Send for FuncValidatorAllocations
impl Sync for FuncValidatorAllocations
impl Unpin for FuncValidatorAllocations
impl UnwindSafe for FuncValidatorAllocations
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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 more