Skip to main content

IdentityError

Enum IdentityError 

Source
pub enum IdentityError {
Show 34 variants CredentialSerialization(EncodeError), Decode(DecodeError), InstallationIdNotFound(String), SignatureRequestBuilder(SignatureRequestError), Signature(SignatureError), BasicCredential(BasicCredentialError), LegacyKeyReuse, UninitializedIdentity, InstallationKey(String), MalformedLegacyKey(String), LegacySignature(String), Crypto(CryptoError), LegacyKeyMismatch, OpenMls(Error), StorageError(StorageError), OpenMlsStorageError(SqlKeyStoreError), KeyPackageGenerationError(KeyPackageNewError), KeyPackageVerificationError(KeyPackageVerificationError), InboxIdMismatch { id: InboxId, stored: InboxId, }, NoAssociatedInboxId(String), RequiredIdentityNotFound, NewIdentity(String), Association(AssociationError), Signer(SignerError), ApiClient(ApiError), IdentityUpdate(IdentityUpdateError), AddressValidation(IdentifierValidationError), Db(ConnectionError), TooManyInstallations { inbox_id: String, count: usize, max: usize, }, GeneratePostQuantumKey(GeneratePostQuantumKeyError), InvalidExtension(InvalidExtensionError), MissingPostQuantumPublicKey, Bincode, UninitializedField(UninitializedFieldError),
}

Variants§

§

CredentialSerialization(EncodeError)

Credential serialization error.

Failed to encode MLS credential. Not retryable.

§

Decode(DecodeError)

Decode error.

Protobuf decoding failed. Not retryable.

§

InstallationIdNotFound(String)

Installation not found.

Installation ID not found in network association state. Not retryable.

§

SignatureRequestBuilder(SignatureRequestError)

§

Signature(SignatureError)

§

BasicCredential(BasicCredentialError)

Basic credential error.

MLS basic credential validation failed. Not retryable.

§

LegacyKeyReuse

Legacy key re-use.

Attempted to reuse a legacy key. Not retryable.

§

UninitializedIdentity

Uninitialized identity.

Identity not yet initialized. Not retryable.

§

InstallationKey(String)

Installation key error.

Problem with installation key. Not retryable.

§

MalformedLegacyKey(String)

Malformed legacy key.

Legacy key format is invalid. Not retryable.

§

LegacySignature(String)

Legacy signature error.

Legacy signature is invalid. Not retryable.

§

Crypto(CryptoError)

Crypto error.

Cryptographic operation failed. Not retryable.

§

LegacyKeyMismatch

Legacy key mismatch.

Legacy key does not match address. Not retryable.

§

OpenMls(Error)

OpenMLS error.

OpenMLS library error. Not retryable.

§

StorageError(StorageError)

§

OpenMlsStorageError(SqlKeyStoreError)

§

KeyPackageGenerationError(KeyPackageNewError)

Key package generation error.

Failed to generate MLS key package. Not retryable.

§

KeyPackageVerificationError(KeyPackageVerificationError)

§

InboxIdMismatch

Inbox ID mismatch.

Associated InboxID does not match stored value. Not retryable.

Fields

§stored: InboxId
§

NoAssociatedInboxId(String)

No associated Inbox ID.

Address has no associated InboxID. Not retryable.

§

RequiredIdentityNotFound

Required identity not found.

Identity was not found in cache. Not retryable.

§

NewIdentity(String)

New identity creation error.

Error creating a new identity. Not retryable.

§

Association(AssociationError)

§

Signer(SignerError)

Signer error.

Cryptographic signer failed. Not retryable.

§

ApiClient(ApiError)

§

IdentityUpdate(IdentityUpdateError)

Identity publication failed. Retryability depends on the cause.

§

AddressValidation(IdentifierValidationError)

§

Db(ConnectionError)

§

TooManyInstallations

Too many installations.

InboxID has reached max installation count. Not retryable.

Fields

§inbox_id: String
§count: usize
§max: usize
§

GeneratePostQuantumKey(GeneratePostQuantumKeyError)

§

InvalidExtension(InvalidExtensionError)

Invalid extension error.

MLS extension validation failed. Not retryable.

§

MissingPostQuantumPublicKey

Missing PQ public key.

Post-quantum public key not found. Not retryable.

§

Bincode

Bincode serialization error.

Binary serialization failed. Not retryable.

§

UninitializedField(UninitializedFieldError)

Uninitialized field.

Builder field not initialized. Not retryable.

Trait Implementations§

Source§

impl Debug for IdentityError

Source§

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

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

impl Display for IdentityError

Source§

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

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

impl Error for IdentityError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

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

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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 ErrorCode for IdentityError

Source§

fn error_code(&self) -> &'static str

Returns the unique error code for this error. Read more
Source§

impl From<ApiError> for IdentityError

Source§

fn from(source: ApiError) -> Self

Converts to this type from the input type.
Source§

impl From<AssociationError> for IdentityError

Source§

fn from(source: AssociationError) -> Self

Converts to this type from the input type.
Source§

impl From<BasicCredentialError> for IdentityError

Source§

fn from(source: BasicCredentialError) -> Self

Converts to this type from the input type.
Source§

impl From<ConnectionError> for IdentityError

Source§

fn from(source: ConnectionError) -> Self

Converts to this type from the input type.
Source§

impl From<CryptoError> for IdentityError

Source§

fn from(source: CryptoError) -> Self

Converts to this type from the input type.
Source§

impl From<DecodeError> for IdentityError

Source§

fn from(source: DecodeError) -> Self

Converts to this type from the input type.
Source§

impl From<EncodeError> for IdentityError

Source§

fn from(source: EncodeError) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for IdentityError

Source§

fn from(source: Error) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for IdentityError

Source§

fn from(error: Error) -> Self

Converts to this type from the input type.
Source§

impl From<GeneratePostQuantumKeyError> for IdentityError

Source§

fn from(source: GeneratePostQuantumKeyError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentifierValidationError> for IdentityError

Source§

fn from(source: IdentifierValidationError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityError> for ClientBuilderError

Source§

fn from(source: IdentityError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityError> for ClientError

Source§

fn from(source: IdentityError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityError> for GroupError

Source§

fn from(source: IdentityError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityError> for KeyPackageMaintenanceError

Source§

fn from(source: IdentityError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityError> for TaskWorkerError

Source§

fn from(source: IdentityError) -> Self

Converts to this type from the input type.
Source§

impl From<IdentityUpdateError> for IdentityError

Source§

fn from(source: IdentityUpdateError) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidExtensionError> for IdentityError

Source§

fn from(source: InvalidExtensionError) -> Self

Converts to this type from the input type.
Source§

impl From<KeyPackageNewError> for IdentityError

Source§

fn from(source: KeyPackageNewError) -> Self

Converts to this type from the input type.
Source§

impl From<KeyPackageVerificationError> for IdentityError

Source§

fn from(source: KeyPackageVerificationError) -> Self

Converts to this type from the input type.
Source§

impl From<SignatureError> for IdentityError

Source§

fn from(source: SignatureError) -> Self

Converts to this type from the input type.
Source§

impl From<SignatureRequestError> for IdentityError

Source§

fn from(source: SignatureRequestError) -> Self

Converts to this type from the input type.
Source§

impl From<SignerError> for IdentityError

Source§

fn from(source: SignerError) -> Self

Converts to this type from the input type.
Source§

impl From<SqlKeyStoreError> for IdentityError

Source§

fn from(source: SqlKeyStoreError) -> Self

Converts to this type from the input type.
Source§

impl From<StorageError> for IdentityError

Source§

fn from(source: StorageError) -> Self

Converts to this type from the input type.
Source§

impl From<UninitializedFieldError> for IdentityError

Source§

fn from(source: UninitializedFieldError) -> Self

Converts to this type from the input type.
Source§

impl NeedsDbReconnect for IdentityError

Source§

impl RetryableError for IdentityError

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> AggregateExpressionMethods for T

§

fn aggregate_distinct(self) -> Self::Output
where Self: DistinctDsl,

DISTINCT modifier for aggregate functions Read more
§

fn aggregate_all(self) -> Self::Output
where Self: AllDsl,

ALL modifier for aggregate functions Read more
§

fn aggregate_filter<P>(self, f: P) -> Self::Output
where P: AsExpression<Bool>, Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,

Add an aggregate function filter Read more
§

fn aggregate_order<O>(self, o: O) -> Self::Output
where Self: OrderAggregateDsl<O>,

Add an aggregate function order Read more
Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
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> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSend for T
where T: Any + Send,

§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Send + Sync>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
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, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

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

§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

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
§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

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

impl<T> IntoSql for T

§

fn into_sql<T>(self) -> Self::Expression
where Self: Sized + AsExpression<T>, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in [Layered].
Source§

impl<TraitVariantBlanketType> LocalNeedsDbReconnect for TraitVariantBlanketType
where TraitVariantBlanketType: NeedsDbReconnect,

§

impl<D> OwoColorize for D

§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
§

fn black(&self) -> FgColorDisplay<'_, Black, Self>

Change the foreground color to black
§

fn on_black(&self) -> BgColorDisplay<'_, Black, Self>

Change the background color to black
§

fn red(&self) -> FgColorDisplay<'_, Red, Self>

Change the foreground color to red
§

fn on_red(&self) -> BgColorDisplay<'_, Red, Self>

Change the background color to red
§

fn green(&self) -> FgColorDisplay<'_, Green, Self>

Change the foreground color to green
§

fn on_green(&self) -> BgColorDisplay<'_, Green, Self>

Change the background color to green
§

fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>

Change the foreground color to yellow
§

fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>

Change the background color to yellow
§

fn blue(&self) -> FgColorDisplay<'_, Blue, Self>

Change the foreground color to blue
§

fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>

Change the background color to blue
§

fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to magenta
§

fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to magenta
§

fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to purple
§

fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to purple
§

fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>

Change the foreground color to cyan
§

fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>

Change the background color to cyan
§

fn white(&self) -> FgColorDisplay<'_, White, Self>

Change the foreground color to white
§

fn on_white(&self) -> BgColorDisplay<'_, White, Self>

Change the background color to white
§

fn default_color(&self) -> FgColorDisplay<'_, Default, Self>

Change the foreground color to the terminal default
§

fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>

Change the background color to the terminal default
§

fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>

Change the foreground color to bright black
§

fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>

Change the background color to bright black
§

fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>

Change the foreground color to bright red
§

fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>

Change the background color to bright red
§

fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>

Change the foreground color to bright green
§

fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>

Change the background color to bright green
§

fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>

Change the foreground color to bright yellow
§

fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>

Change the background color to bright yellow
§

fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>

Change the foreground color to bright blue
§

fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>

Change the background color to bright blue
§

fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright magenta
§

fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright magenta
§

fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright purple
§

fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright purple
§

fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>

Change the foreground color to bright cyan
§

fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>

Change the background color to bright cyan
§

fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>

Change the foreground color to bright white
§

fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>

Change the background color to bright white
§

fn bold(&self) -> BoldDisplay<'_, Self>

Make the text bold
§

fn dimmed(&self) -> DimDisplay<'_, Self>

Make the text dim
§

fn italic(&self) -> ItalicDisplay<'_, Self>

Make the text italicized
§

fn underline(&self) -> UnderlineDisplay<'_, Self>

Make the text underlined
Make the text blink
Make the text blink (but fast!)
§

fn reversed(&self) -> ReversedDisplay<'_, Self>

Swap the foreground and background colors
§

fn hidden(&self) -> HiddenDisplay<'_, Self>

Hide the text
§

fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>

Cross out the text
§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either [OwoColorize::fg] or a color-specific method, such as [OwoColorize::green], Read more
§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either [OwoColorize::bg] or a color-specific method, such as [OwoColorize::on_yellow], Read more
§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
§

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

Source§

type Output = T

Should always be Self
Source§

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

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
§

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

§

fn vzip(self) -> V

§

impl<T> WindowExpressionMethods for T

§

fn over(self) -> Self::Output
where Self: OverDsl,

Turn a function call into a window function call Read more
§

fn window_filter<P>(self, f: P) -> Self::Output
where P: AsExpression<Bool>, Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,

Add a filter to the current window function Read more
§

fn partition_by<E>(self, expr: E) -> Self::Output
where Self: PartitionByDsl<E>,

Add a partition clause to the current window function Read more
§

fn window_order<E>(self, expr: E) -> Self::Output
where Self: OrderWindowDsl<E>,

Add a order clause to the current window function Read more
§

fn frame_by<E>(self, expr: E) -> Self::Output
where Self: FrameDsl<E>,

Add a frame clause to the current window function Read more
§

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> MaybeSend for T
where T: Send + ?Sized,

Source§

impl<T> MaybeSync for T
where T: Sync + ?Sized,

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,