Struct mysql::Column[][src]

pub struct Column { /* fields omitted */ }

Represents MySql Column (column packet).

Methods

impl Column
[src]

Returns value of the column_length field of a column packet.

Returns value of the column_type field of a column packet.

Returns value of the character_set field of a column packet.

Returns value of the flags field of a column packet.

Returns value of the decimals field of a column packet.

Important traits for &'a [u8]

Returns value of the schema field of a column packet as a byte slice.

Returns value of the schema field of a column packet as a string (lossy converted).

Important traits for &'a [u8]

Returns value of the table field of a column packet as a byte slice.

Returns value of the table field of a column packet as a string (lossy converted).

Important traits for &'a [u8]

Returns value of the org_table field of a column packet as a byte slice.

"org_table" is for original table name.

Returns value of the org_table field of a column packet as a string (lossy converted).

Important traits for &'a [u8]

Returns value of the name field of a column packet as a byte slice.

Returns value of the name field of a column packet as a string (lossy converted).

Important traits for &'a [u8]

Returns value of the org_name field of a column packet as a byte slice.

"org_name" is for original column name.

Returns value of the org_name field of a column packet as a string (lossy converted).

Trait Implementations

impl Clone for Column
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Column
[src]

Formats the value using the given formatter. Read more

impl Eq for Column
[src]

impl PartialEq<Column> for Column
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Column

impl Sync for Column