pub enum PlanError {
Show 98 variants
Unsupported {
feature: String,
discussion_no: Option<usize>,
},
NeverSupported {
feature: String,
documentation_link: Option<String>,
details: Option<String>,
},
UnknownColumn {
table: Option<PartialItemName>,
column: ColumnName,
similar: Box<[ColumnName]>,
},
UngroupedColumn {
table: Option<PartialItemName>,
column: ColumnName,
},
WrongJoinTypeForLateralColumn {
table: Option<PartialItemName>,
column: ColumnName,
},
AmbiguousColumn(ColumnName),
TooManyColumns {
max_num_columns: usize,
req_num_columns: usize,
},
ColumnAlreadyExists {
column_name: ColumnName,
object_name: String,
},
AmbiguousTable(PartialItemName),
UnknownColumnInUsingClause {
column: ColumnName,
join_side: JoinSide,
},
AmbiguousColumnInUsingClause {
column: ColumnName,
join_side: JoinSide,
},
MisqualifiedName(String),
OverqualifiedDatabaseName(String),
OverqualifiedSchemaName(String),
UnderqualifiedColumnName(String),
SubqueriesDisallowed {
context: String,
},
UnknownParameter(usize),
RecursionLimit(RecursionLimitError),
StrconvParse(ParseError),
Catalog(CatalogError),
UpsertSinkWithoutKey,
UpsertSinkWithInvalidKey {
name: String,
desired_key: Vec<String>,
valid_keys: Vec<Vec<String>>,
},
InvalidWmrRecursionLimit(String),
InvalidNumericMaxScale(InvalidNumericMaxScaleError),
InvalidCharLength(InvalidCharLengthError),
InvalidId(CatalogItemId),
InvalidIdent(IdentError),
InvalidObject(Box<ResolvedItemName>),
InvalidObjectType {
expected_type: SystemObjectType,
actual_type: SystemObjectType,
object_name: String,
},
InvalidPrivilegeTypes {
invalid_privileges: AclMode,
object_description: ErrorMessageObjectDescription,
},
InvalidVarCharMaxLength(InvalidVarCharMaxLengthError),
InvalidTimestampPrecision(InvalidTimestampPrecisionError),
InvalidSecret(Box<ResolvedItemName>),
InvalidTemporarySchema,
InvalidCast {
name: String,
ccx: CastContext,
from: String,
to: String,
},
MangedReplicaName(String),
ParserStatement(ParserStatementError),
Parser(ParserError),
DropViewOnMaterializedView(String),
DependentObjectsStillExist {
object_type: String,
object_name: String,
dependents: Vec<(String, String)>,
},
AlterViewOnMaterializedView(String),
ShowCreateViewOnMaterializedView(String),
ExplainViewOnMaterializedView(String),
UnacceptableTimelineName(String),
FetchingCsrSchemaFailed {
schema_lookup: String,
cause: Arc<dyn Error + Send + Sync>,
},
PostgresConnectionErr {
cause: Arc<PostgresError>,
},
MySqlConnectionErr {
cause: Arc<MySqlError>,
},
SubsourceNameConflict {
name: UnresolvedItemName,
upstream_references: Vec<UnresolvedItemName>,
},
SubsourceDuplicateReference {
name: UnresolvedItemName,
target_names: Vec<UnresolvedItemName>,
},
NoTablesFoundForSchemas(Vec<String>),
InvalidProtobufSchema {
cause: OperationFailedError,
},
InvalidOptionValue {
option_name: String,
err: Box<PlanError>,
},
UnexpectedDuplicateReference {
name: UnresolvedItemName,
},
RecursiveTypeMismatch(String, Vec<String>, Vec<String>),
UnknownFunction {
name: String,
arg_types: Vec<String>,
},
IndistinctFunction {
name: String,
arg_types: Vec<String>,
},
UnknownOperator {
name: String,
arg_types: Vec<String>,
},
IndistinctOperator {
name: String,
arg_types: Vec<String>,
},
InvalidPrivatelinkAvailabilityZone {
name: String,
supported_azs: BTreeSet<String>,
},
DuplicatePrivatelinkAvailabilityZone {
duplicate_azs: BTreeSet<String>,
},
InvalidSchemaName,
ItemAlreadyExists {
name: String,
item_type: CatalogItemType,
},
ManagedCluster {
cluster_name: String,
},
InvalidKeysInSubscribeEnvelopeUpsert,
InvalidKeysInSubscribeEnvelopeDebezium,
InvalidPartitionByEnvelopeDebezium {
column_name: String,
},
InvalidOrderByInSubscribeWithinTimestampOrderBy,
FromValueRequiresParen,
VarError(VarError),
UnsolvablePolymorphicFunctionInput,
ShowCommandInView,
WebhookValidationDoesNotUseColumns,
WebhookValidationNonDeterministic,
InternalFunctionCall,
CommentTooLong {
length: usize,
max_size: usize,
},
InvalidTimestampInterval {
min: Duration,
max: Duration,
requested: Duration,
},
InvalidGroupSizeHints,
PgSourcePurification(PgSourcePurificationError),
KafkaSourcePurification(KafkaSourcePurificationError),
KafkaSinkPurification(KafkaSinkPurificationError),
LoadGeneratorSourcePurification(LoadGeneratorSourcePurificationError),
CsrPurification(CsrPurificationError),
MySqlSourcePurification(MySqlSourcePurificationError),
UseTablesForSources(String),
MissingName(CatalogItemType),
InvalidRefreshAt,
InvalidRefreshEveryAlignedTo,
CreateReplicaFailStorageObjects {
current_replica_count: usize,
internal_replica_count: usize,
hypothetical_replica_count: usize,
},
MismatchedObjectType {
name: PartialItemName,
is_type: ObjectType,
expected_type: ObjectType,
},
TableContainsUningestableTypes {
name: String,
type_: String,
column: String,
},
RetainHistoryLow {
limit: Duration,
},
RetainHistoryRequired,
UntilReadyTimeoutRequired,
SubsourceResolutionError(ExternalReferenceResolutionError),
Replan(String),
NetworkPolicyLockoutError,
NetworkPolicyInUse,
Unstructured(String),
}
Variants§
Unsupported
This feature is not yet supported, but may be supported at some point in the future.
NeverSupported
This feature is not supported, and will likely never be supported.
UnknownColumn
UngroupedColumn
WrongJoinTypeForLateralColumn
AmbiguousColumn(ColumnName)
TooManyColumns
ColumnAlreadyExists
AmbiguousTable(PartialItemName)
UnknownColumnInUsingClause
AmbiguousColumnInUsingClause
MisqualifiedName(String)
OverqualifiedDatabaseName(String)
OverqualifiedSchemaName(String)
UnderqualifiedColumnName(String)
SubqueriesDisallowed
UnknownParameter(usize)
RecursionLimit(RecursionLimitError)
StrconvParse(ParseError)
Catalog(CatalogError)
UpsertSinkWithoutKey
UpsertSinkWithInvalidKey
InvalidWmrRecursionLimit(String)
InvalidNumericMaxScale(InvalidNumericMaxScaleError)
InvalidCharLength(InvalidCharLengthError)
InvalidId(CatalogItemId)
InvalidIdent(IdentError)
InvalidObject(Box<ResolvedItemName>)
InvalidObjectType
InvalidPrivilegeTypes
InvalidVarCharMaxLength(InvalidVarCharMaxLengthError)
InvalidTimestampPrecision(InvalidTimestampPrecisionError)
InvalidSecret(Box<ResolvedItemName>)
InvalidTemporarySchema
InvalidCast
MangedReplicaName(String)
ParserStatement(ParserStatementError)
Parser(ParserError)
DropViewOnMaterializedView(String)
DependentObjectsStillExist
AlterViewOnMaterializedView(String)
ShowCreateViewOnMaterializedView(String)
ExplainViewOnMaterializedView(String)
UnacceptableTimelineName(String)
FetchingCsrSchemaFailed
PostgresConnectionErr
Fields
§
cause: Arc<PostgresError>
MySqlConnectionErr
Fields
§
cause: Arc<MySqlError>
SubsourceNameConflict
SubsourceDuplicateReference
NoTablesFoundForSchemas(Vec<String>)
InvalidProtobufSchema
Fields
§
cause: OperationFailedError
InvalidOptionValue
UnexpectedDuplicateReference
Fields
§
name: UnresolvedItemName
RecursiveTypeMismatch(String, Vec<String>, Vec<String>)
Declaration of a recursive type did not match the inferred type.
UnknownFunction
IndistinctFunction
UnknownOperator
IndistinctOperator
InvalidPrivatelinkAvailabilityZone
DuplicatePrivatelinkAvailabilityZone
InvalidSchemaName
ItemAlreadyExists
ManagedCluster
InvalidKeysInSubscribeEnvelopeUpsert
InvalidKeysInSubscribeEnvelopeDebezium
InvalidPartitionByEnvelopeDebezium
InvalidOrderByInSubscribeWithinTimestampOrderBy
FromValueRequiresParen
VarError(VarError)
UnsolvablePolymorphicFunctionInput
ShowCommandInView
WebhookValidationDoesNotUseColumns
WebhookValidationNonDeterministic
InternalFunctionCall
CommentTooLong
InvalidTimestampInterval
InvalidGroupSizeHints
PgSourcePurification(PgSourcePurificationError)
KafkaSourcePurification(KafkaSourcePurificationError)
KafkaSinkPurification(KafkaSinkPurificationError)
LoadGeneratorSourcePurification(LoadGeneratorSourcePurificationError)
CsrPurification(CsrPurificationError)
MySqlSourcePurification(MySqlSourcePurificationError)
UseTablesForSources(String)
MissingName(CatalogItemType)
InvalidRefreshAt
InvalidRefreshEveryAlignedTo
CreateReplicaFailStorageObjects
Fields
MismatchedObjectType
TableContainsUningestableTypes
MZ failed to generate cast for the data type.
RetainHistoryLow
RetainHistoryRequired
UntilReadyTimeoutRequired
SubsourceResolutionError(ExternalReferenceResolutionError)
Replan(String)
NetworkPolicyLockoutError
NetworkPolicyInUse
Unstructured(String)
Implementations§
Trait Implementations§
source§impl Error for PlanError
impl Error for PlanError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CatalogError> for PlanError
impl From<CatalogError> for PlanError
source§fn from(e: CatalogError) -> PlanError
fn from(e: CatalogError) -> PlanError
Converts to this type from the input type.
source§impl From<CsrPurificationError> for PlanError
impl From<CsrPurificationError> for PlanError
source§fn from(e: CsrPurificationError) -> Self
fn from(e: CsrPurificationError) -> Self
Converts to this type from the input type.
source§impl From<ExternalReferenceResolutionError> for PlanError
impl From<ExternalReferenceResolutionError> for PlanError
source§fn from(e: ExternalReferenceResolutionError) -> Self
fn from(e: ExternalReferenceResolutionError) -> Self
Converts to this type from the input type.
source§impl From<IdentError> for PlanError
impl From<IdentError> for PlanError
source§fn from(e: IdentError) -> Self
fn from(e: IdentError) -> Self
Converts to this type from the input type.
source§impl From<InvalidCharLengthError> for PlanError
impl From<InvalidCharLengthError> for PlanError
source§fn from(e: InvalidCharLengthError) -> PlanError
fn from(e: InvalidCharLengthError) -> PlanError
Converts to this type from the input type.
source§impl From<InvalidNumericMaxScaleError> for PlanError
impl From<InvalidNumericMaxScaleError> for PlanError
source§fn from(e: InvalidNumericMaxScaleError) -> PlanError
fn from(e: InvalidNumericMaxScaleError) -> PlanError
Converts to this type from the input type.
source§impl From<InvalidTimestampPrecisionError> for PlanError
impl From<InvalidTimestampPrecisionError> for PlanError
source§fn from(e: InvalidTimestampPrecisionError) -> PlanError
fn from(e: InvalidTimestampPrecisionError) -> PlanError
Converts to this type from the input type.
source§impl From<InvalidVarCharMaxLengthError> for PlanError
impl From<InvalidVarCharMaxLengthError> for PlanError
source§fn from(e: InvalidVarCharMaxLengthError) -> PlanError
fn from(e: InvalidVarCharMaxLengthError) -> PlanError
Converts to this type from the input type.
source§impl From<KafkaSinkPurificationError> for PlanError
impl From<KafkaSinkPurificationError> for PlanError
source§fn from(e: KafkaSinkPurificationError) -> Self
fn from(e: KafkaSinkPurificationError) -> Self
Converts to this type from the input type.
source§impl From<KafkaSourcePurificationError> for PlanError
impl From<KafkaSourcePurificationError> for PlanError
source§fn from(e: KafkaSourcePurificationError) -> Self
fn from(e: KafkaSourcePurificationError) -> Self
Converts to this type from the input type.
source§impl From<LoadGeneratorSourcePurificationError> for PlanError
impl From<LoadGeneratorSourcePurificationError> for PlanError
source§fn from(e: LoadGeneratorSourcePurificationError) -> Self
fn from(e: LoadGeneratorSourcePurificationError) -> Self
Converts to this type from the input type.
source§impl From<MySqlError> for PlanError
impl From<MySqlError> for PlanError
source§fn from(e: MySqlError) -> PlanError
fn from(e: MySqlError) -> PlanError
Converts to this type from the input type.
source§impl From<MySqlSourcePurificationError> for PlanError
impl From<MySqlSourcePurificationError> for PlanError
source§fn from(e: MySqlSourcePurificationError) -> Self
fn from(e: MySqlSourcePurificationError) -> Self
Converts to this type from the input type.
source§impl From<ParseError> for PlanError
impl From<ParseError> for PlanError
source§fn from(e: ParseError) -> PlanError
fn from(e: ParseError) -> PlanError
Converts to this type from the input type.
source§impl From<ParseIntError> for PlanError
impl From<ParseIntError> for PlanError
source§fn from(e: ParseIntError) -> PlanError
fn from(e: ParseIntError) -> PlanError
Converts to this type from the input type.
source§impl From<ParserError> for PlanError
impl From<ParserError> for PlanError
source§fn from(e: ParserError) -> PlanError
fn from(e: ParserError) -> PlanError
Converts to this type from the input type.
source§impl From<ParserStatementError> for PlanError
impl From<ParserStatementError> for PlanError
source§fn from(e: ParserStatementError) -> PlanError
fn from(e: ParserStatementError) -> PlanError
Converts to this type from the input type.
source§impl From<PgSourcePurificationError> for PlanError
impl From<PgSourcePurificationError> for PlanError
source§fn from(e: PgSourcePurificationError) -> Self
fn from(e: PgSourcePurificationError) -> Self
Converts to this type from the input type.
source§impl From<PostgresError> for PlanError
impl From<PostgresError> for PlanError
source§fn from(e: PostgresError) -> PlanError
fn from(e: PostgresError) -> PlanError
Converts to this type from the input type.
source§impl From<RecursionLimitError> for PlanError
impl From<RecursionLimitError> for PlanError
source§fn from(e: RecursionLimitError) -> PlanError
fn from(e: RecursionLimitError) -> PlanError
Converts to this type from the input type.
source§impl From<TryFromIntError> for PlanError
impl From<TryFromIntError> for PlanError
source§fn from(e: TryFromIntError) -> PlanError
fn from(e: TryFromIntError) -> PlanError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PlanError
impl !RefUnwindSafe for PlanError
impl Send for PlanError
impl Sync for PlanError
impl Unpin for PlanError
impl !UnwindSafe for PlanError
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<E> ErrorExt for E
impl<E> ErrorExt for E
source§fn display_with_causes(&self) -> ErrorChainFormatter<&Self>
fn display_with_causes(&self) -> ErrorChainFormatter<&Self>
Returns a type that displays the error, along with the chain of source errors or
causes, if there are any. Read more
source§fn to_string_with_causes(&self) -> String
fn to_string_with_causes(&self) -> String
Converts
self
to a string String
, along with the chain of source errors or
causes, if there are any. Read moresource§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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Creates a shared type from an unshared type.
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
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,
Pipes by value. This is generally the method you want to use. Read more
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,
Borrows
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,
Mutably borrows
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
Borrows
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
Mutably borrows
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
Borrows
self
, then passes self.deref()
into the pipe function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.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
Immutable access to the
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
Mutable access to the
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
Immutable access to the
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
Mutable access to the
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
Immutable access to the
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
Mutable access to the
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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.