#[repr(C)]pub struct RawMultiBind {
pub buffer_type: c_int,
pub buffer: *const c_void,
pub buffer_length: usize,
pub length: *const i32,
pub is_null: *const c_char,
pub num: c_int,
}Fields§
§buffer_type: c_int§buffer: *const c_void§buffer_length: usize§length: *const i32§is_null: *const c_char§num: c_intImplementations§
Trait Implementations§
Source§impl BindFrom for RawMultiBind
impl BindFrom for RawMultiBind
Source§impl Clone for RawMultiBind
impl Clone for RawMultiBind
Source§fn clone(&self) -> RawMultiBind
fn clone(&self) -> RawMultiBind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RawMultiBind
impl RefUnwindSafe for RawMultiBind
impl !Send for RawMultiBind
impl !Sync for RawMultiBind
impl Unpin for RawMultiBind
impl UnwindSafe for RawMultiBind
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<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