#[non_exhaustive]pub enum AccountIdEndpointMode {
Preferred,
Disabled,
Required,
}
Expand description
Setting to control the account ID-based routing behavior.
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.
Preferred
The endpoint should include account ID if available.
Disabled
A resolved endpoint does not include account ID.
Required
The endpoint must include account ID. If the account ID isn’t available, the SDK throws an error.
Trait Implementations§
source§impl Clone for AccountIdEndpointMode
impl Clone for AccountIdEndpointMode
source§fn clone(&self) -> AccountIdEndpointMode
fn clone(&self) -> AccountIdEndpointMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AccountIdEndpointMode
impl Debug for AccountIdEndpointMode
source§impl Default for AccountIdEndpointMode
impl Default for AccountIdEndpointMode
source§fn default() -> AccountIdEndpointMode
fn default() -> AccountIdEndpointMode
Returns the “default value” for a type. Read more
source§impl Display for AccountIdEndpointMode
impl Display for AccountIdEndpointMode
source§impl FromStr for AccountIdEndpointMode
impl FromStr for AccountIdEndpointMode
source§impl PartialEq for AccountIdEndpointMode
impl PartialEq for AccountIdEndpointMode
source§fn eq(&self, other: &AccountIdEndpointMode) -> bool
fn eq(&self, other: &AccountIdEndpointMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Storable for AccountIdEndpointMode
impl Storable for AccountIdEndpointMode
§type Storer = StoreReplace<AccountIdEndpointMode>
type Storer = StoreReplace<AccountIdEndpointMode>
Specify how an item is stored in the config bag, e.g.
StoreReplace
and StoreAppend
impl Eq for AccountIdEndpointMode
impl StructuralPartialEq for AccountIdEndpointMode
Auto Trait Implementations§
impl Freeze for AccountIdEndpointMode
impl RefUnwindSafe for AccountIdEndpointMode
impl Send for AccountIdEndpointMode
impl Sync for AccountIdEndpointMode
impl Unpin for AccountIdEndpointMode
impl UnwindSafe for AccountIdEndpointMode
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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreCreates a shared type from an unshared type.