[]Struct msql_srv::StatusFlags

pub struct StatusFlags { /* fields omitted */ }

MySql server status flags

Methods

impl StatusFlags

pub const SERVER_STATUS_IN_TRANS: StatusFlags

Is raised when a multi-statement transaction has been started, either explicitly, by means of BEGIN or COMMIT AND CHAIN, or implicitly, by the first transactional statement, when autocommit=off.

pub const SERVER_STATUS_AUTOCOMMIT: StatusFlags

Server in auto_commit mode.

pub const SERVER_MORE_RESULTS_EXISTS: StatusFlags

Multi query - next query exists.

pub const SERVER_STATUS_NO_GOOD_INDEX_USED: StatusFlags

pub const SERVER_STATUS_NO_INDEX_USED: StatusFlags

pub const SERVER_STATUS_CURSOR_EXISTS: StatusFlags

The server was able to fulfill the clients request and opened a read-only non-scrollable cursor for a query. This flag comes in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands. Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.

pub const SERVER_STATUS_LAST_ROW_SENT: StatusFlags

This flag is sent when a read-only cursor is exhausted, in reply to COM_STMT_FETCH command.

pub const SERVER_STATUS_DB_DROPPED: StatusFlags

A database was dropped.

pub const SERVER_STATUS_NO_BACKSLASH_ESCAPES: StatusFlags

pub const SERVER_STATUS_METADATA_CHANGED: StatusFlags

Sent to the client if after a prepared statement reprepare we discovered that the new statement returns a different number of result set columns.

pub const SERVER_QUERY_WAS_SLOW: StatusFlags

pub const SERVER_PS_OUT_PARAMS: StatusFlags

To mark ResultSet containing output parameter values.

pub const SERVER_STATUS_IN_TRANS_READONLY: StatusFlags

Set at the same time as SERVER_STATUS_IN_TRANS if the started multi-statement transaction is a read-only transaction. Cleared when the transaction commits or aborts. Since this flag is sent to clients in OK and EOF packets, the flag indicates the transaction status at the end of command execution.

pub const SERVER_SESSION_STATE_CHANGED: StatusFlags

This status flag, when on, implies that one of the state information has changed on the server because of the execution of the last statement.

pub const fn empty() -> StatusFlags

Returns an empty set of flags

pub const fn all() -> StatusFlags

Returns the set containing all flags.

pub const fn bits(&self) -> u16

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u16) -> Option<StatusFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u16) -> StatusFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u16) -> StatusFlags

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: StatusFlags) -> bool

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: StatusFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: StatusFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: StatusFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: StatusFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: StatusFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl LowerHex for StatusFlags

impl Not for StatusFlags

type Output = StatusFlags

The resulting type after applying the ! operator.

fn not(self) -> StatusFlags

Returns the complement of this set of flags.

impl BitXor<StatusFlags> for StatusFlags

type Output = StatusFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: StatusFlags) -> StatusFlags

Returns the left flags, but with all the right flags toggled.

impl Extend<StatusFlags> for StatusFlags

impl BitAndAssign<StatusFlags> for StatusFlags

fn bitand_assign(&mut self, other: StatusFlags)

Disables all flags disabled in the set.

impl StructuralEq for StatusFlags

impl UpperHex for StatusFlags

impl PartialOrd<StatusFlags> for StatusFlags

impl FromIterator<StatusFlags> for StatusFlags

impl BitXorAssign<StatusFlags> for StatusFlags

fn bitxor_assign(&mut self, other: StatusFlags)

Toggles the set of flags.

impl Octal for StatusFlags

impl Binary for StatusFlags

impl Sub<StatusFlags> for StatusFlags

type Output = StatusFlags

The resulting type after applying the - operator.

fn sub(self, other: StatusFlags) -> StatusFlags

Returns the set difference of the two sets of flags.

impl BitAnd<StatusFlags> for StatusFlags

type Output = StatusFlags

The resulting type after applying the & operator.

fn bitand(self, other: StatusFlags) -> StatusFlags

Returns the intersection between the two sets of flags.

impl BitOr<StatusFlags> for StatusFlags

type Output = StatusFlags

The resulting type after applying the | operator.

fn bitor(self, other: StatusFlags) -> StatusFlags

Returns the union of the two sets of flags.

impl PartialEq<StatusFlags> for StatusFlags

impl Ord for StatusFlags

impl Copy for StatusFlags

impl Clone for StatusFlags

impl Hash for StatusFlags

impl BitOrAssign<StatusFlags> for StatusFlags

fn bitor_assign(&mut self, other: StatusFlags)

Adds the set of flags.

impl Eq for StatusFlags

impl Debug for StatusFlags

impl StructuralPartialEq for StatusFlags

impl SubAssign<StatusFlags> for StatusFlags

fn sub_assign(&mut self, other: StatusFlags)

Disables all flags enabled in the set.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self