Enum servers::postgres::types::error::PgErrorCode

source ·
pub enum PgErrorCode {
Show 55 variants Ec00000 = 0, Ec01000 = 100, Ec02000 = 200, Ec03000 = 300, Ec08000 = 400, Ec09000 = 500, Ec0A000 = 600, Ec0B000 = 700, Ec0F000 = 800, Ec0L000 = 900, Ec0P000 = 1_000, Ec0Z000 = 1_100, Ec20000 = 1_200, Ec21000 = 1_300, Ec22000 = 1_400, Ec22023 = 1_401, Ec23000 = 1_500, Ec24000 = 1_600, Ec25000 = 1_700, Ec25006 = 1_701, Ec26000 = 1_800, Ec27000 = 1_900, Ec28000 = 2_000, Ec28P01 = 1_901, Ec2B000 = 2_100, Ec2D000 = 2_200, Ec2F000 = 2_300, Ec34000 = 2_400, Ec38000 = 2_500, Ec39000 = 2_600, Ec3B000 = 2_700, Ec3D000 = 2_800, Ec3F000 = 2_900, Ec40000 = 3_000, Ec42000 = 3_100, Ec42601 = 3_101, Ec42501 = 3_102, Ec42703 = 3_103, Ec42P01 = 3_104, Ec42704 = 3_105, Ec42701 = 3_106, Ec42P04 = 3_107, Ec42P07 = 3_108, Ec42P14 = 3_109, Ec44000 = 3_200, Ec53000 = 3_300, Ec54000 = 3_400, Ec55000 = 3_500, Ec57000 = 3_600, Ec58000 = 3_700, Ec72000 = 3_800, EcF0000 = 3_900, EcHV000 = 4_000, EcP0000 = 4_100, EcXX000 = 4_200,
}

Variants§

§

Ec00000 = 0

successful_completion

§

Ec01000 = 100

warning

§

Ec02000 = 200

no_data

§

Ec03000 = 300

sql_statement_not_yet_complete

§

Ec08000 = 400

connection_exception

§

Ec09000 = 500

triggered_action_exception

§

Ec0A000 = 600

feature_not_supported

§

Ec0B000 = 700

invalid_transaction_initiation

§

Ec0F000 = 800

locator_exception

§

Ec0L000 = 900

invalid_grantor

§

Ec0P000 = 1_000

invalid_role_specification

§

Ec0Z000 = 1_100

diagnostics_exception

§

Ec20000 = 1_200

case_not_found

§

Ec21000 = 1_300

cardinality_violation

§

Ec22000 = 1_400

data_exception

§

Ec22023 = 1_401

invalid_parameter_value

§

Ec23000 = 1_500

integrity_constraint_violation

§

Ec24000 = 1_600

invalid_cursor_state

§

Ec25000 = 1_700

invalid_transaction_state

§

Ec25006 = 1_701

read_only_sql_transaction

§

Ec26000 = 1_800

invalid_sql_statement_name

§

Ec27000 = 1_900

triggered_data_change_violation

§

Ec28000 = 2_000

invalid_authorization_specification

§

Ec28P01 = 1_901

invalid_password

§

Ec2B000 = 2_100

dependent_privilege_descriptors_still_exist

§

Ec2D000 = 2_200

invalid_transaction_termination

§

Ec2F000 = 2_300

sql_routine_exception

§

Ec34000 = 2_400

invalid_cursor_name

§

Ec38000 = 2_500

external_routine_exception

§

Ec39000 = 2_600

external_routine_invocation_exception

§

Ec3B000 = 2_700

savepoint_exception

§

Ec3D000 = 2_800

invalid_catalog_name

§

Ec3F000 = 2_900

invalid_schema_name

§

Ec40000 = 3_000

transaction_rollback

§

Ec42000 = 3_100

syntax_error_or_access_rule_violation

§

Ec42601 = 3_101

syntax_error

§

Ec42501 = 3_102

insufficient_privilege

§

Ec42703 = 3_103

undefined_column

§

Ec42P01 = 3_104

undefined_table

§

Ec42704 = 3_105

undefined_object

§

Ec42701 = 3_106

duplicate_column

§

Ec42P04 = 3_107

duplicate_database

§

Ec42P07 = 3_108

duplicate_table

§

Ec42P14 = 3_109

invalid_prepared_statement_definition

§

Ec44000 = 3_200

with_check_option_violation

§

Ec53000 = 3_300

insufficient_resources

§

Ec54000 = 3_400

program_limit_exceeded

§

Ec55000 = 3_500

object_not_in_prerequisite_state

§

Ec57000 = 3_600

operator_intervention

§

Ec58000 = 3_700

system_error

§

Ec72000 = 3_800

snapshot_too_old

§

EcF0000 = 3_900

config_file_error

§

EcHV000 = 4_000

fdw_error

§

EcP0000 = 4_100

plpgsql_error

§

EcXX000 = 4_200

internal_error

Implementations§

source§

impl PgErrorCode

source

fn severity(&self) -> PgErrorSeverity

source

pub(crate) fn code(&self) -> String

source

pub fn to_err_info(&self, msg: String) -> ErrorInfo

Trait Implementations§

source§

impl AsRef<str> for PgErrorCode

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Debug for PgErrorCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for PgErrorCode

source§

fn fmt(&self, __snafu_display_formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl EnumMessage for PgErrorCode

source§

fn get_message(&self) -> Option<&'static str>

source§

fn get_detailed_message(&self) -> Option<&'static str>

source§

fn get_documentation(&self) -> Option<&'static str>

Get the doc comment associated with a variant if it exists.
source§

fn get_serializations(&self) -> &'static [&'static str]

source§

impl Error for PgErrorCode
where Self: Debug + Display,

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl ErrorCompat for PgErrorCode

source§

fn backtrace(&self) -> Option<&Backtrace>

Returns a Backtrace that may be printed.
§

fn iter_chain(&self) -> ChainCompat<'_, '_>
where Self: AsErrorSource,

Returns an iterator for traversing the chain of errors, starting with the current error and continuing with recursive calls to Error::source. Read more
source§

impl From<PgErrorCode> for ErrorInfo

source§

fn from(code: PgErrorCode) -> ErrorInfo

Converts to this type from the input type.
source§

impl From<StatusCode> for PgErrorCode

source§

fn from(code: StatusCode) -> PgErrorCode

Converts to this type from the input type.
source§

impl IntoEnumIterator for PgErrorCode

source§

impl IntoError<PgErrorCode> for Ec00000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec01000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec02000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec03000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec08000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec09000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0A000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0B000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0F000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0L000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0P000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec0Z000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec20000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec21000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec22000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec22023Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec23000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec24000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec25000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec25006Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec26000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec27000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec28000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec28P01Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec2B000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec2D000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec2F000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec34000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec38000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec39000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec3B000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec3D000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec3F000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec40000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42501Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42601Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42701Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42703Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42704Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42P01Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42P04Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42P07Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec42P14Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec44000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec53000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec54000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec55000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec57000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec58000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for Ec72000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for EcF0000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for EcHV000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for EcP0000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error
source§

impl IntoError<PgErrorCode> for EcXX000Snafu
where PgErrorCode: Error + ErrorCompat,

§

type Source = NoneError

The underlying error
source§

fn into_error(self, error: Self::Source) -> PgErrorCode

Combine the information to produce the error

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AsErrorSource for T
where T: Error + 'static,

§

fn as_error_source(&self) -> &(dyn Error + 'static)

For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers.
§

impl<T> AsErrorSource for T
where T: Error + 'static,

§

fn as_error_source(&self) -> &(dyn Error + 'static)

For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

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

impl<T, V> Convert<T> for V
where V: Into<T>,

§

fn convert(value: Self) -> T

§

fn convert_box(value: Box<Self>) -> Box<T>

§

fn convert_vec(value: Vec<Self>) -> Vec<T>

§

fn convert_vec_box(value: Vec<Box<Self>>) -> Vec<Box<T>>

§

fn convert_matrix(value: Vec<Vec<Self>>) -> Vec<Vec<T>>

§

fn convert_option(value: Option<Self>) -> Option<T>

§

fn convert_option_box(value: Option<Box<Self>>) -> Option<Box<T>>

§

fn convert_option_vec(value: Option<Vec<Self>>) -> Option<Vec<T>>

§

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

§

type Remainder = Choices

§

fn subset( self, ) -> Result<CNil, <Choices as CoproductSubsetter<CNil, HNil>>::Remainder>

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

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

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

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

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

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

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

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

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

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

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

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

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

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

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

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

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

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T, U, I> LiftInto<U, I> for T
where U: LiftFrom<T, I>,

§

fn lift_into(self) -> U

Performs the indexed conversion.
source§

impl<S> ParseFormatted for S
where S: AsRef<str>,

source§

fn parse_formatted<F, N>(&self, format: &F) -> Result<N, Error>
where F: Format, N: FromFormattedStr,

Converts self (typically a formatted string) into a number (see Examples above).
§

impl<T> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

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

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

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

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

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

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

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

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

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

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

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

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

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

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

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

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

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

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<Source> Sculptor<HNil, HNil> for Source

§

type Remainder = Source

§

fn sculpt(self) -> (HNil, <Source as Sculptor<HNil, HNil>>::Remainder)

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

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

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

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

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

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

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

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

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

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

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

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

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

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

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

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

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

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

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

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

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

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

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

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

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

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

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

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T> ToStringFallible for T
where T: Display,

§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> Any for T
where T: Any,

§

impl<T> MaybeSend for T
where T: Send,