#[non_exhaustive]pub struct ClientRequestTokenRequiredException { /* private fields */ }Expand description
A client request token is required. A client request token is an unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
Implementations
sourceimpl ClientRequestTokenRequiredException
impl ClientRequestTokenRequiredException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ClientRequestTokenRequiredException.
Trait Implementations
sourceimpl Clone for ClientRequestTokenRequiredException
impl Clone for ClientRequestTokenRequiredException
sourcefn clone(&self) -> ClientRequestTokenRequiredException
fn clone(&self) -> ClientRequestTokenRequiredException
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Error for ClientRequestTokenRequiredException
impl Error for ClientRequestTokenRequiredException
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<ClientRequestTokenRequiredException> for ClientRequestTokenRequiredException
impl PartialEq<ClientRequestTokenRequiredException> for ClientRequestTokenRequiredException
sourcefn eq(&self, other: &ClientRequestTokenRequiredException) -> bool
fn eq(&self, other: &ClientRequestTokenRequiredException) -> bool
impl StructuralPartialEq for ClientRequestTokenRequiredException
Auto Trait Implementations
impl RefUnwindSafe for ClientRequestTokenRequiredException
impl Send for ClientRequestTokenRequiredException
impl Sync for ClientRequestTokenRequiredException
impl Unpin for ClientRequestTokenRequiredException
impl UnwindSafe for ClientRequestTokenRequiredException
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more