Enum mysql::consts::SessionStateType[][src]

#[repr(u8)]
pub enum SessionStateType { SESSION_TRACK_SYSTEM_VARIABLES, SESSION_TRACK_SCHEMA, SESSION_TRACK_STATE_CHANGE, SESSION_TRACK_GTIDS, SESSION_TRACK_TRANSACTION_CHARACTERISTICS, SESSION_TRACK_TRANSACTION_STATE, }

Type of state change information (part of MySql's Ok packet).

Variants

Session system variables.

Current schema.

track session state changes

See also: session_track_gtids.

Transaction characteristics.

Transaction state.

Trait Implementations

impl Clone for SessionStateType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SessionStateType
[src]

Formats the value using the given formatter. Read more

impl From<u8> for SessionStateType
[src]

Performs the conversion.

impl Copy for SessionStateType
[src]

impl Eq for SessionStateType
[src]

impl PartialEq<SessionStateType> for SessionStateType
[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