pub enum Resultset41 {
Row(ResultsetRow),
Err(ErrPacket),
Ok(OKPacket),
EOF(EOFPacket41),
}Variants§
Implementations§
Source§impl Resultset41
impl Resultset41
pub async fn read_packet( reader: &mut (impl AsyncRead + Unpin + Sync + Send + ?Sized), client_capabilities: CapabilityFlags, ) -> Result<Self>
pub fn read_packet_sync( reader: impl Read, client_capability: CapabilityFlags, ) -> Result<Self>
Auto Trait Implementations§
impl Freeze for Resultset41
impl RefUnwindSafe for Resultset41
impl Send for Resultset41
impl Sync for Resultset41
impl Unpin for Resultset41
impl UnwindSafe for Resultset41
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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