pub struct OkPacket {
pub affected_rows: u64,
pub last_insert_id: u64,
pub status: Status,
pub warnings: u16,
}
Expand description
Indicates successful completion of a previous command sent by the client.
Fields
affected_rows: u64
last_insert_id: u64
status: Status
warnings: u16
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for OkPacket
impl Send for OkPacket
impl Sync for OkPacket
impl Unpin for OkPacket
impl UnwindSafe for OkPacket
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more