#[non_exhaustive]pub struct UserStackAssociationError { /* private fields */ }
Expand description
Describes the error that is returned when a user can’t be associated with or disassociated from a stack.
Implementations§
source§impl UserStackAssociationError
impl UserStackAssociationError
sourcepub fn user_stack_association(&self) -> Option<&UserStackAssociation>
pub fn user_stack_association(&self) -> Option<&UserStackAssociation>
Information about the user and associated stack.
sourcepub fn error_code(&self) -> Option<&UserStackAssociationErrorCode>
pub fn error_code(&self) -> Option<&UserStackAssociationErrorCode>
The error code for the error that is returned when a user can’t be associated with or disassociated from a stack.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message for the error that is returned when a user can’t be associated with or disassociated from a stack.
source§impl UserStackAssociationError
impl UserStackAssociationError
sourcepub fn builder() -> UserStackAssociationErrorBuilder
pub fn builder() -> UserStackAssociationErrorBuilder
Creates a new builder-style object to manufacture UserStackAssociationError
.
Trait Implementations§
source§impl Clone for UserStackAssociationError
impl Clone for UserStackAssociationError
source§fn clone(&self) -> UserStackAssociationError
fn clone(&self) -> UserStackAssociationError
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 UserStackAssociationError
impl Debug for UserStackAssociationError
source§impl PartialEq<UserStackAssociationError> for UserStackAssociationError
impl PartialEq<UserStackAssociationError> for UserStackAssociationError
source§fn eq(&self, other: &UserStackAssociationError) -> bool
fn eq(&self, other: &UserStackAssociationError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.