pub struct AnyArguments<'q> { /* private fields */ }
Trait Implementations§
source§impl<'q> Arguments<'q> for AnyArguments<'q>
impl<'q> Arguments<'q> for AnyArguments<'q>
type Database = Any
source§fn reserve(&mut self, additional: usize, _size: usize)
fn reserve(&mut self, additional: usize, _size: usize)
Reserves the capacity for at least
additional
more values (of size
total bytes) to
be added to the arguments without a reallocation.source§fn add<T>(&mut self, value: T) -> Result<(), Box<dyn Error + Sync + Send>>where
T: 'q + Encode<'q, <AnyArguments<'q> as Arguments<'q>>::Database> + Type<<AnyArguments<'q> as Arguments<'q>>::Database>,
fn add<T>(&mut self, value: T) -> Result<(), Box<dyn Error + Sync + Send>>where
T: 'q + Encode<'q, <AnyArguments<'q> as Arguments<'q>>::Database> + Type<<AnyArguments<'q> as Arguments<'q>>::Database>,
Add the value to the end of the arguments.
fn format_placeholder<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
source§impl<'q> Default for AnyArguments<'q>
impl<'q> Default for AnyArguments<'q>
source§fn default() -> AnyArguments<'q>
fn default() -> AnyArguments<'q>
Returns the “default value” for a type. Read more
source§impl<'q> IntoArguments<'q, <AnyArguments<'q> as Arguments<'q>>::Database> for AnyArguments<'q>
impl<'q> IntoArguments<'q, <AnyArguments<'q> as Arguments<'q>>::Database> for AnyArguments<'q>
fn into_arguments(self) -> AnyArguments<'q>
Auto Trait Implementations§
impl<'q> Freeze for AnyArguments<'q>
impl<'q> RefUnwindSafe for AnyArguments<'q>
impl<'q> Send for AnyArguments<'q>
impl<'q> Sync for AnyArguments<'q>
impl<'q> Unpin for AnyArguments<'q>
impl<'q> UnwindSafe for AnyArguments<'q>
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> 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 more