Struct mysql_async::Column [] [src]

pub struct Column { /* fields omitted */ }

Represents MySql Column (column packet).

Methods

impl Column
[src]

[src]

Returns value of the column_length field of a column packet.

[src]

Returns value of the column_type field of a column packet.

[src]

Returns value of the character_set field of a column packet.

[src]

Returns value of the flags field of a column packet.

[src]

Returns value of the decimals field of a column packet.

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

"org_table" is for original table name.

[src]

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

[src]

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

[src]

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

[src]

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

"org_name" is for original column name.

[src]

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

Trait Implementations

impl Clone for Column
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Column> for Column
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for Column
[src]

[src]

Formats the value using the given formatter.

impl Eq for Column
[src]