Skip to main content

AuthError

Enum AuthError 

Source
#[non_exhaustive]
pub enum AuthError {
Show 19 variants Request(RequestError), AccessDenied(AccessDenied), InvalidGrant(InvalidGrant), InvalidClient(InvalidClient), InvalidUrl(InvalidUrl), Region(UnsupportedRegion), InvalidCrn(InvalidCrn), WorkspaceMismatch(WorkspaceMismatch), InvalidWorkspaceId(InvalidWorkspaceId), MissingWorkspaceCrn(MissingWorkspaceCrn), NotAuthenticated(NotAuthenticated), TokenExpired(TokenExpired), InvalidAccessKey(InvalidAccessKeyError), InvalidToken(InvalidToken), Server(ServerError), AlreadyConsumed(AlreadyConsumed), Internal(InternalError), Custom(CustomError), Store(StoreError),
}
Expand description

Errors that can occur during an authentication flow.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Request(RequestError)

§

AccessDenied(AccessDenied)

§

InvalidGrant(InvalidGrant)

§

InvalidClient(InvalidClient)

§

InvalidUrl(InvalidUrl)

§

Region(UnsupportedRegion)

§

InvalidCrn(InvalidCrn)

§

WorkspaceMismatch(WorkspaceMismatch)

§

InvalidWorkspaceId(InvalidWorkspaceId)

§

MissingWorkspaceCrn(MissingWorkspaceCrn)

§

NotAuthenticated(NotAuthenticated)

§

TokenExpired(TokenExpired)

§

InvalidAccessKey(InvalidAccessKeyError)

§

InvalidToken(InvalidToken)

§

Server(ServerError)

§

AlreadyConsumed(AlreadyConsumed)

§

Internal(InternalError)

§

Custom(CustomError)

§

Store(StoreError)

Implementations§

Source§

impl AuthError

Source

pub const ERROR_CODES: &'static [&'static str]

The complete set of codes AuthError::error_code can return — the stable, machine-readable contract surfaced across FFI (JS Error.code, Node-API codes, the index.d.ts / wasm-inline.d.ts AuthFailure unions). The bindings derive their expected union from this constant rather than re-scraping the per-error AuthErrorKind::error_code impls, and auth_error_code_is_stable_for_every_variant pins that it stays in lockstep with what error_code actually returns.

Source

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

Stable machine-readable identifier for surfacing across FFI boundaries (e.g. JS Error.code, Node-API error codes). Delegates to the wrapped error’s AuthErrorKind::error_code; every value it can return is listed in AuthError::ERROR_CODES.

Source

pub fn from_error_code( code: &str, message: impl Into<String>, payload: &Map<String, Value>, ) -> Self

Reconstruct an AuthError from its stable FFI wire form — the type code, rendered message, and structured payload a serialized AuthError carries across the boundary (e.g. the { failure } a JS-supplied auth strategy returns; payload is the extra fields AuthErrorKind::payload emits alongside type/message).

This is the inverse an adaptor needs so that failures cross back into Rust as real AuthErrors rather than being flattened to a single opaque variant:

  • the fixed-message unit codes map straight back to their variant;
  • WORKSPACE_MISMATCH rebuilds from its expected/actual payload;
  • every other code maps to AuthError::Custom (mirrors serde’s Error::custom), because the variants that wrap a foreign error (RequestError, InvalidUrl, UnsupportedRegion, …) have no constructor from a string, and message is the rendered Display (e.g. "Server error: …") — re-wrapping it in a prefixing variant would double the prefix.

Custom stores the message verbatim, so a reconstructed error still reads exactly as it did on the far side. error_code() round-trips exactly for the mapped codes and is CUSTOM otherwise. Pass an empty map for payload when there are no structured fields.

Trait Implementations§

Source§

impl Debug for AuthError

Source§

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

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

impl Diagnostic for AuthError

Source§

fn code(&self) -> Option<Box<dyn Display + '_>>

Unique diagnostic code that can be used to look up more information about this Diagnostic. Ideally also globally unique, and documented in the toplevel crate’s documentation for easy searching. Rust path format (foo::bar::baz) is recommended, but more classic codes like E0123 or enums will work just fine.
Source§

fn help(&self) -> Option<Box<dyn Display + '_>>

Additional help text related to this Diagnostic. Do you have any advice for the poor soul who’s just run into this issue?
Source§

fn severity(&self) -> Option<Severity>

Diagnostic severity. This may be used by ReportHandlers to change the display format of this diagnostic. Read more
Source§

fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>>

Labels to apply to this Diagnostic’s Diagnostic::source_code
Source§

fn source_code(&self) -> Option<&dyn SourceCode>

Source code to apply this Diagnostic’s Diagnostic::labels to.
Source§

fn related(&self) -> Option<Box<dyn Iterator<Item = &dyn Diagnostic> + '_>>

Additional related Diagnostics.
Source§

fn url(&self) -> Option<Box<dyn Display + '_>>

URL to visit for a more detailed explanation/help about this Diagnostic.
Source§

fn diagnostic_source(&self) -> Option<&dyn Diagnostic>

The cause of the error.
Source§

impl Display for AuthError

Source§

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

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

impl Error for AuthError

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 From<AccessDenied> for AuthError

Source§

fn from(source: AccessDenied) -> Self

Converts to this type from the input type.
Source§

impl From<AlreadyConsumed> for AuthError

Source§

fn from(source: AlreadyConsumed) -> Self

Converts to this type from the input type.
Source§

impl From<AuthError> for DeviceClientError

Source§

fn from(source: AuthError) -> Self

Converts to this type from the input type.
Source§

impl From<CustomError> for AuthError

Source§

fn from(source: CustomError) -> Self

Converts to this type from the input type.
Source§

impl From<DeviceClientError> for AuthError

Available on non-WebAssembly only.
Source§

fn from(e: DeviceClientError) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for AuthError

Source§

fn from(e: Error) -> Self

Converts to this type from the input type.
Source§

impl From<Infallible> for AuthError

Source§

fn from(never: Infallible) -> Self

Converts to this type from the input type.
Source§

impl From<InternalError> for AuthError

Source§

fn from(source: InternalError) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidAccessKey> for AuthError

Source§

fn from(e: InvalidAccessKey) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidAccessKeyError> for AuthError

Source§

fn from(source: InvalidAccessKeyError) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidClient> for AuthError

Source§

fn from(source: InvalidClient) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidCrn> for AuthError

Source§

fn from(source: InvalidCrn) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidCrn> for AuthError

Source§

fn from(e: InvalidCrn) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidGrant> for AuthError

Source§

fn from(source: InvalidGrant) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidToken> for AuthError

Source§

fn from(source: InvalidToken) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidUrl> for AuthError

Source§

fn from(source: InvalidUrl) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidWorkspaceId> for AuthError

Source§

fn from(source: InvalidWorkspaceId) -> Self

Converts to this type from the input type.
Source§

impl From<InvalidWorkspaceId> for AuthError

Source§

fn from(e: InvalidWorkspaceId) -> Self

Converts to this type from the input type.
Source§

impl From<MissingWorkspaceCrn> for AuthError

Source§

fn from(source: MissingWorkspaceCrn) -> Self

Converts to this type from the input type.
Source§

impl From<NotAuthenticated> for AuthError

Source§

fn from(source: NotAuthenticated) -> Self

Converts to this type from the input type.
Source§

impl From<ParseError> for AuthError

Source§

fn from(e: ParseError) -> Self

Converts to this type from the input type.
Source§

impl From<ProfileError> for AuthError

Available on non-WebAssembly only.
Source§

fn from(e: ProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<RegionError> for AuthError

Source§

fn from(e: RegionError) -> Self

Converts to this type from the input type.
Source§

impl From<RequestError> for AuthError

Source§

fn from(source: RequestError) -> Self

Converts to this type from the input type.
Source§

impl From<ServerError> for AuthError

Source§

fn from(source: ServerError) -> Self

Converts to this type from the input type.
Source§

impl From<StoreError> for AuthError

Source§

fn from(source: StoreError) -> Self

Converts to this type from the input type.
Source§

impl From<TokenExpired> for AuthError

Source§

fn from(source: TokenExpired) -> Self

Converts to this type from the input type.
Source§

impl From<UnsupportedRegion> for AuthError

Source§

fn from(source: UnsupportedRegion) -> Self

Converts to this type from the input type.
Source§

impl From<WorkspaceMismatch> for AuthError

Source§

fn from(source: WorkspaceMismatch) -> Self

Converts to this type from the input type.
Source§

impl Serialize for AuthError

Serialize an AuthError into the flat, FFI-facing shape consumed by the Node and Wasm bindings: { type, message, help?, url?, ...payload }.

type/message come from the canonical code and Display; help/url are captured generically from the miette::Diagnostic surface (so per-variant help stays colocated on the struct); extra structured fields come from AuthErrorKind::payload.

serialize_map lets the wasm binding render this as a plain JS object via Serializer::serialize_maps_as_objects(true); serde_json renders a JSON object directly.

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more

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

impl<T> AuthStrategyBounds for T
where T: Send + Sync + 'static,

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

impl<T> Fake for T

Source§

fn fake<U>(&self) -> U
where Self: FakeBase<U>,

Source§

fn fake_with_rng<U, R>(&self, rng: &mut R) -> U
where R: Rng + ?Sized, Self: FakeBase<U>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + 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
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + 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> ToStringFallible for T
where T: Display,

Source§

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

ToString::to_string, but without panic on OOM.

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ValidateIp for T
where T: ToString,

Source§

fn validate_ipv4(&self) -> bool

Validates whether the given string is an IP V4
Source§

fn validate_ipv6(&self) -> bool

Validates whether the given string is an IP V6
Source§

fn validate_ip(&self) -> bool

Validates whether the given string is an IP
Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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