Enum rsfbclient_rust::ParsedColumn[][src]

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

Column data parsed from a fetch response

Variants

Complete

All data received

Tuple Fields of Complete

0: Column
Blob

Blobs need more requests to get the actual data

Fields of Blob

binary: bool

True if blob type 0

id: BlobId

Blob id

col_name: String

Column name

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

Performs the conversion.

Performs the conversion.

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.