pub struct PrepareOk {
pub statement_id: u32,
pub columns: u16,
pub params: u16,
pub warnings: u16,
}
Fields§
§statement_id: u32
§columns: u16
§params: u16
§warnings: u16
Trait Implementations§
Source§impl Decode<'_, Capabilities> for PrepareOk
impl Decode<'_, Capabilities> for PrepareOk
fn decode_with(buf: Bytes, _: Capabilities) -> Result<Self, Error>
Auto Trait Implementations§
impl Freeze for PrepareOk
impl RefUnwindSafe for PrepareOk
impl Send for PrepareOk
impl Sync for PrepareOk
impl Unpin for PrepareOk
impl UnwindSafe for PrepareOk
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> 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