pub enum ParsedColumn {
    Complete(Column),
    Blob {
        binary: bool,
        id: BlobId,
        col_name: String,
    },
}
Expand description

Column data parsed from a fetch response

Variants§

§

Complete(Column)

All data received

§

Blob

Fields

§binary: bool

True if blob type 0

§id: BlobId

Blob id

§col_name: String

Column name

Blobs need more requests to get the actual data

Implementations§

Get the rest of the data needed for the columns if necessary

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.