pub struct BodyResResultPrepared {
pub id: CBytesShort,
pub metadata: PreparedMetadata,
pub result_metadata: RowsMetadata,
}Expand description
The structure represents a body of a response frame of type prepared
Fields§
§id: CBytesShortid of prepared request
metadata: PreparedMetadatametadata
result_metadata: RowsMetadataIt is defined exactly the same as
Trait Implementations§
Source§impl Debug for BodyResResultPrepared
impl Debug for BodyResResultPrepared
Source§impl FromCursor for BodyResResultPrepared
impl FromCursor for BodyResResultPrepared
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultPrepared>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultPrepared>
It should return an implementor from an
io::Cursor over an array of bytes.Auto Trait Implementations§
impl Freeze for BodyResResultPrepared
impl RefUnwindSafe for BodyResResultPrepared
impl Send for BodyResResultPrepared
impl Sync for BodyResResultPrepared
impl Unpin for BodyResResultPrepared
impl UnwindSafe for BodyResResultPrepared
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