Enum mysql_common::binlog::events::StatusVarVal[][src]

pub enum StatusVarVal<'a> {
Show 21 variants Flags2(RawFlags<Flags2, LeU32>), SqlMode(RawFlags<SqlMode, LeU64>), Catalog(&'a [u8]), AutoIncrement { increment: u16, offset: u16, }, Charset { charset_client: u16, collation_connection: u16, collation_server: u16, }, TimeZone(RawBytes<'a, U8Bytes>), CatalogNz(RawBytes<'a, U8Bytes>), LcTimeNames(u16), CharsetDatabase(u16), TableMapForUpdate(u64), MasterDataWritten([u8; 4]), Invoker { username: RawBytes<'a, U8Bytes>, hostname: RawBytes<'a, U8Bytes>, }, UpdatedDbNames(Vec<RawBytes<'a, NullBytes>>), Microseconds(u32), CommitTs(&'a [u8]), CommitTs2(&'a [u8]), ExplicitDefaultsForTimestamp(bool), DdlLoggedWithXid(u64), DefaultCollationForUtf8mb4(u16), SqlRequirePrimaryKey(u8), DefaultTableEncryption(u8),
}
Expand description

Status variable value.

Variants

Flags2(RawFlags<Flags2, LeU32>)

Tuple Fields

SqlMode(RawFlags<SqlMode, LeU64>)

Tuple Fields

Catalog(&'a [u8])

Tuple Fields

Ignored by this implementation.

AutoIncrement

Fields

increment: u16
offset: u16

Charset

Fields

charset_client: u16
collation_connection: u16
collation_server: u16

TimeZone(RawBytes<'a, U8Bytes>)

Tuple Fields

0: RawBytes<'a, U8Bytes>

Will be empty if timezone length is 0.

CatalogNz(RawBytes<'a, U8Bytes>)

Tuple Fields

0: RawBytes<'a, U8Bytes>

Will be empty if timezone length is 0.

LcTimeNames(u16)

Tuple Fields

0: u16

CharsetDatabase(u16)

Tuple Fields

0: u16

TableMapForUpdate(u64)

Tuple Fields

0: u64

MasterDataWritten([u8; 4])

Tuple Fields

Invoker

Fields

username: RawBytes<'a, U8Bytes>
hostname: RawBytes<'a, U8Bytes>

UpdatedDbNames(Vec<RawBytes<'a, NullBytes>>)

Tuple Fields

Microseconds(u32)

Tuple Fields

0: u32

CommitTs(&'a [u8])

Tuple Fields

Ignored.

CommitTs2(&'a [u8])

Tuple Fields

Ignored.

ExplicitDefaultsForTimestamp(bool)

Tuple Fields

0: bool

0 is interpreted as false and everything else as true.

DdlLoggedWithXid(u64)

Tuple Fields

0: u64

DefaultCollationForUtf8mb4(u16)

Tuple Fields

0: u16

SqlRequirePrimaryKey(u8)

Tuple Fields

0: u8

DefaultTableEncryption(u8)

Tuple Fields

0: u8

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

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

This method tests for !=.

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

Converts self into T using Into<T>. Read more

Extract a subset of the possible types in a coproduct (or get the remaining possibilities) Read more

Causes self to use its Binary implementation when Debug-formatted.

Causes self to use its Display implementation when Debug-formatted. Read more

Causes self to use its LowerExp implementation when Debug-formatted. Read more

Causes self to use its LowerHex implementation when Debug-formatted. Read more

Causes self to use its Octal implementation when Debug-formatted.

Causes self to use its Pointer implementation when Debug-formatted. Read more

Causes self to use its UpperExp implementation when Debug-formatted. Read more

Causes self to use its UpperHex implementation when Debug-formatted. Read more

Performs the conversion.

Performs the conversion.

Performs the indexed conversion.

Pipes by value. This is generally the method you want to use. Read more

Borrows self and passes that borrow into the pipe function. Read more

Mutably borrows self and passes that borrow into the pipe function. Read more

Borrows self, then passes self.borrow() into the pipe function. Read more

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more

Borrows self, then passes self.as_ref() into the pipe function.

Mutably borrows self, then passes self.as_mut() into the pipe function. Read more

Borrows self, then passes self.deref() into the pipe function.

Mutably borrows self, then passes self.deref_mut() into the pipe function. Read more

Should always be Self

Consumes the current HList and returns an HList with the requested shape. Read more

Immutable access to a value. Read more

Mutable access to a value. Read more

Immutable access to the Borrow<B> of a value. Read more

Mutable access to the BorrowMut<B> of a value. Read more

Immutable access to the AsRef<R> view of a value. Read more

Mutable access to the AsMut<R> view of a value. Read more

Immutable access to the Deref::Target of a value. Read more

Mutable access to the Deref::Target of a value. Read more

Calls .tap() only in debug builds, and is erased in release builds.

Calls .tap_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref_mut() only in debug builds, and is erased in release builds. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Attempts to convert self into T using TryInto<T>. Read more

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.