Skip to main content

Packet

Enum Packet 

Source
pub enum Packet {
    Ok(OkPacket),
    Err(ServerError),
    Eof(EofPacket),
    AuthSwitch {
        plugin: String,
        data: Vec<u8>,
    },
    AuthMoreData(Vec<u8>),
    Other(Vec<u8>),
}
Expand description

A packet whose kind can be told from its first byte.

Only unambiguous in reply to a command. Inside a result set a leading 0x00 is a binary row and a leading 0xFE is a length-encoded integer, so rows are parsed by the code that knows it asked for them.

Variants§

§

Ok(OkPacket)

§

Err(ServerError)

§

Eof(EofPacket)

§

AuthSwitch

The server wants a different authentication plugin than the one the handshake named.

Fields

§plugin: String
§data: Vec<u8>
§

AuthMoreData(Vec<u8>)

Plugin-specific data mid-authentication, such as caching_sha2’s verdict.

§

Other(Vec<u8>)

A payload the caller has to interpret itself — a result-set header.

Implementations§

Source§

impl Packet

Source

pub fn parse(payload: &[u8]) -> Result<Packet>

Classify one payload received in reply to a command.

Trait Implementations§

Source§

impl Debug for Packet

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.