pub struct PreparedMetadata {
pub flags: i32,
pub columns_count: i32,
pub pk_count: i32,
pub pk_indexes: Vec<i16>,
pub global_table_spec: Option<(CString, CString)>,
pub col_specs: Vec<ColSpec>,
}Expand description
The structure that represents metadata of prepared response.
Fields§
§flags: i32§columns_count: i32§pk_count: i32§pk_indexes: Vec<i16>§global_table_spec: Option<(CString, CString)>§col_specs: Vec<ColSpec>Trait Implementations§
Source§impl Debug for PreparedMetadata
impl Debug for PreparedMetadata
Source§impl FromCursor for PreparedMetadata
impl FromCursor for PreparedMetadata
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<PreparedMetadata>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<PreparedMetadata>
It should return an implementor from an
io::Cursor over an array of bytes.Auto Trait Implementations§
impl Freeze for PreparedMetadata
impl RefUnwindSafe for PreparedMetadata
impl Send for PreparedMetadata
impl Sync for PreparedMetadata
impl Unpin for PreparedMetadata
impl UnwindSafe for PreparedMetadata
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