pub struct CapabilityFlags(/* private fields */);
Expand description
Client capability flags
Implementations§
Source§impl CapabilityFlags
impl CapabilityFlags
Sourcepub const CLIENT_LONG_PASSWORD: Self = _
pub const CLIENT_LONG_PASSWORD: Self = _
Use the improved version of Old Password Authentication. Assumed to be set since 4.1.1.
Sourcepub const CLIENT_FOUND_ROWS: Self = _
pub const CLIENT_FOUND_ROWS: Self = _
Send found rows instead of affected rows in EOF_Packet.
Sourcepub const CLIENT_LONG_FLAG: Self = _
pub const CLIENT_LONG_FLAG: Self = _
Sourcepub const CLIENT_CONNECT_WITH_DB: Self = _
pub const CLIENT_CONNECT_WITH_DB: Self = _
Sourcepub const CLIENT_NO_SCHEMA: Self = _
pub const CLIENT_NO_SCHEMA: Self = _
Don’t allow database.table.column.
Sourcepub const CLIENT_COMPRESS: Self = _
pub const CLIENT_COMPRESS: Self = _
Sourcepub const CLIENT_ODBC: Self = _
pub const CLIENT_ODBC: Self = _
Special handling of ODBC behavior.
Sourcepub const CLIENT_LOCAL_FILES: Self = _
pub const CLIENT_LOCAL_FILES: Self = _
Sourcepub const CLIENT_IGNORE_SPACE: Self = _
pub const CLIENT_IGNORE_SPACE: Self = _
pub const CLIENT_PROTOCOL_41: Self = _
Sourcepub const CLIENT_INTERACTIVE: Self = _
pub const CLIENT_INTERACTIVE: Self = _
Sourcepub const CLIENT_SSL: Self = _
pub const CLIENT_SSL: Self = _
Sourcepub const CLIENT_IGNORE_SIGPIPE: Self = _
pub const CLIENT_IGNORE_SIGPIPE: Self = _
Client only flag. Not used.
§Client
Do not issue SIGPIPE if network failures occur (libmysqlclient only).
Sourcepub const CLIENT_TRANSACTIONS: Self = _
pub const CLIENT_TRANSACTIONS: Self = _
pub const CLIENT_RESERVED: Self = _
pub const CLIENT_SECURE_CONNECTION: Self = _
Sourcepub const CLIENT_MULTI_STATEMENTS: Self = _
pub const CLIENT_MULTI_STATEMENTS: Self = _
Sourcepub const CLIENT_MULTI_RESULTS: Self = _
pub const CLIENT_MULTI_RESULTS: Self = _
Sourcepub const CLIENT_PS_MULTI_RESULTS: Self = _
pub const CLIENT_PS_MULTI_RESULTS: Self = _
Sourcepub const CLIENT_PLUGIN_AUTH: Self = _
pub const CLIENT_PLUGIN_AUTH: Self = _
Sourcepub const CLIENT_CONNECT_ATTRS: Self = _
pub const CLIENT_CONNECT_ATTRS: Self = _
Sourcepub const CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA: Self = _
pub const CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA: Self = _
Enable authentication response packet to be larger than 255 bytes. When the ability to change default plugin require that the initial password field in the Protocol::HandshakeResponse41 paclet can be of arbitrary size. However, the 4.1 client-server protocol limits the length of the auth-data-field sent from client to server to 255 bytes. The solution is to change the type of the field to a true length encoded string and indicate the protocol change with this client capability flag.
§Server
Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
§Client
Length of auth response data in Protocol::HandshakeResponse41 is a length-encoded integer.
§Note
The flag was introduced in 5.6.6, but had the wrong value.
Sourcepub const CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS: Self = _
pub const CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS: Self = _
Sourcepub const CLIENT_SESSION_TRACK: Self = _
pub const CLIENT_SESSION_TRACK: Self = _
Capable of handling server state change information. Its a hint to the server to include the state change information in OK_Packet.
§Server
Can set SERVER_SESSION_STATE_CHANGED in the SERVER_STATUS_flags_enum and send Session State Information in a OK_Packet.
§Client
Expects the server to send Session State Information in a OK_Packet.
Sourcepub const CLIENT_DEPRECATE_EOF: Self = _
pub const CLIENT_DEPRECATE_EOF: Self = _
Client no longer needs EOF_Packet and will use OK_Packet instead.
§Server
Can send OK after a Text Resultset.
§Client
Expects an OK_Packet (instead of EOF_Packet) after the resultset rows of a Text Resultset.
§Background
To support CLIENT_SESSION_TRACK, additional information must be sent after all successful commands. Although the OK_Packet is extensible, the EOF_Packet is not due to the overlap of its bytes with the content of the Text Resultset Row.
Therefore, the EOF_Packet in the Text Resultset is replaced with an OK_Packet. EOF_Packet is deprecated as of MySQL 5.7.5.
Sourcepub const CLIENT_OPTIONAL_RESULTSET_METADATA: Self = _
pub const CLIENT_OPTIONAL_RESULTSET_METADATA: Self = _
The client can handle optional metadata information in the resultset.
Sourcepub const CLIENT_ZSTD_COMPRESSION_ALGORITHM: Self = _
pub const CLIENT_ZSTD_COMPRESSION_ALGORITHM: Self = _
Compression protocol extended to support zstd compression method.
This capability flag is used to send zstd compression level between client and server provided both client and server are enabled with this flag.
§Server
Server sets this flag when global variable protocol-compression-algorithms has zstd in its list of supported values.
§Client
Client sets this flag when it is configured to use zstd compression method.
Sourcepub const CLIENT_QUERY_ATTRIBUTES: Self = _
pub const CLIENT_QUERY_ATTRIBUTES: Self = _
Support optional extension for query parameters into the COM_QUERY and COM_STMT_EXECUTE packets.
§Server
Expects an optional part containing the query parameter set(s). Executes the query for each set of parameters or returns an error if more than 1 set of parameters is sent and the server can’t execute it.
§Client
Can send the optional part containing the query parameter set(s).
Sourcepub const MULTI_FACTOR_AUTHENTICATION: Self = _
pub const MULTI_FACTOR_AUTHENTICATION: Self = _
Sourcepub const CLIENT_PROGRESS_OBSOLETE: Self = _
pub const CLIENT_PROGRESS_OBSOLETE: Self = _
Client or server supports progress reports within error packet.
Sourcepub const CLIENT_SSL_VERIFY_SERVER_CERT: Self = _
pub const CLIENT_SSL_VERIFY_SERVER_CERT: Self = _
Verify server certificate. Client only flag.
Deprecated in favor of –ssl-mode.
Sourcepub const CLIENT_REMEMBER_OPTIONS: Self = _
pub const CLIENT_REMEMBER_OPTIONS: Self = _
Don’t reset the options after an unsuccessful connect. Client only flag.
Source§impl CapabilityFlags
impl CapabilityFlags
Sourcepub const fn bits(&self) -> u32
pub const fn bits(&self) -> u32
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
Sourcepub const fn from_bits(bits: u32) -> Option<Self>
pub const fn from_bits(bits: u32) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
Sourcepub const fn from_bits_truncate(bits: u32) -> Self
pub const fn from_bits_truncate(bits: u32) -> Self
Convert from a bits value, unsetting any unknown bits.
Sourcepub const fn from_bits_retain(bits: u32) -> Self
pub const fn from_bits_retain(bits: u32) -> Self
Convert from a bits value exactly.
Sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
Sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
Sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
Sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
Sourcepub fn toggle(&mut self, other: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
Sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
Sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
Sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
Sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
Sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
Sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
The bitwise negation (!
) of the bits in a flags value, truncating the result.
Source§impl CapabilityFlags
impl CapabilityFlags
Sourcepub const fn iter(&self) -> Iter<CapabilityFlags>
pub const fn iter(&self) -> Iter<CapabilityFlags>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
Sourcepub const fn iter_names(&self) -> IterNames<CapabilityFlags>
pub const fn iter_names(&self) -> IterNames<CapabilityFlags>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
Source§impl Binary for CapabilityFlags
impl Binary for CapabilityFlags
Source§impl BitAnd for CapabilityFlags
impl BitAnd for CapabilityFlags
Source§impl BitAndAssign for CapabilityFlags
impl BitAndAssign for CapabilityFlags
Source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
The bitwise and (&
) of the bits in two flags values.
Source§impl BitOr for CapabilityFlags
impl BitOr for CapabilityFlags
Source§fn bitor(self, other: CapabilityFlags) -> Self
fn bitor(self, other: CapabilityFlags) -> Self
The bitwise or (|
) of the bits in two flags values.
Source§type Output = CapabilityFlags
type Output = CapabilityFlags
|
operator.Source§impl BitOrAssign for CapabilityFlags
impl BitOrAssign for CapabilityFlags
Source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
The bitwise or (|
) of the bits in two flags values.
Source§impl BitXor for CapabilityFlags
impl BitXor for CapabilityFlags
Source§impl BitXorAssign for CapabilityFlags
impl BitXorAssign for CapabilityFlags
Source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
Source§impl Clone for CapabilityFlags
impl Clone for CapabilityFlags
Source§fn clone(&self) -> CapabilityFlags
fn clone(&self) -> CapabilityFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CapabilityFlags
impl Debug for CapabilityFlags
Source§impl Default for CapabilityFlags
impl Default for CapabilityFlags
Source§fn default() -> CapabilityFlags
fn default() -> CapabilityFlags
Source§impl Extend<CapabilityFlags> for CapabilityFlags
impl Extend<CapabilityFlags> for CapabilityFlags
Source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
The bitwise or (|
) of the bits in each flags value.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Source§impl Flags for CapabilityFlags
impl Flags for CapabilityFlags
Source§const FLAGS: &'static [Flag<CapabilityFlags>] = _
const FLAGS: &'static [Flag<CapabilityFlags>] = _
Source§fn from_bits_retain(bits: u32) -> CapabilityFlags
fn from_bits_retain(bits: u32) -> CapabilityFlags
Source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
Source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
Source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
Source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.Source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read moreSource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.Source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.Source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moreSource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.Source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.Source§impl From<CapabilityFlags> for u32
impl From<CapabilityFlags> for u32
Source§fn from(val: CapabilityFlags) -> u32
fn from(val: CapabilityFlags) -> u32
Source§impl FromIterator<CapabilityFlags> for CapabilityFlags
impl FromIterator<CapabilityFlags> for CapabilityFlags
Source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
Source§impl Hash for CapabilityFlags
impl Hash for CapabilityFlags
Source§impl IntoIterator for CapabilityFlags
impl IntoIterator for CapabilityFlags
Source§impl LowerHex for CapabilityFlags
impl LowerHex for CapabilityFlags
Source§impl Not for CapabilityFlags
impl Not for CapabilityFlags
Source§impl Octal for CapabilityFlags
impl Octal for CapabilityFlags
Source§impl PartialEq for CapabilityFlags
impl PartialEq for CapabilityFlags
Source§impl PublicFlags for CapabilityFlags
impl PublicFlags for CapabilityFlags
Source§impl Sub for CapabilityFlags
impl Sub for CapabilityFlags
Source§fn sub(self, other: Self) -> Self
fn sub(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
Source§type Output = CapabilityFlags
type Output = CapabilityFlags
-
operator.Source§impl SubAssign for CapabilityFlags
impl SubAssign for CapabilityFlags
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
Source§impl TryFrom<u32> for CapabilityFlags
impl TryFrom<u32> for CapabilityFlags
Source§type Error = UnknownCapabilityFlags
type Error = UnknownCapabilityFlags
Source§fn try_from(val: u32) -> Result<CapabilityFlags, UnknownCapabilityFlags>
fn try_from(val: u32) -> Result<CapabilityFlags, UnknownCapabilityFlags>
Source§impl UpperHex for CapabilityFlags
impl UpperHex for CapabilityFlags
impl Copy for CapabilityFlags
impl Eq for CapabilityFlags
impl StructuralPartialEq for CapabilityFlags
Auto Trait Implementations§
impl Freeze for CapabilityFlags
impl RefUnwindSafe for CapabilityFlags
impl Send for CapabilityFlags
impl Sync for CapabilityFlags
impl Unpin for CapabilityFlags
impl UnwindSafe for CapabilityFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.