pub struct UserStackAssociationError {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub user_stack_association: Option<UserStackAssociation>,
}
Expand description
Describes the error that is returned when a user can’t be associated with or disassociated from a stack.
Fields§
§error_code: Option<String>
The error code for the error that is returned when a user can’t be associated with or disassociated from a stack.
error_message: Option<String>
The error message for the error that is returned when a user can’t be associated with or disassociated from a stack.
user_stack_association: Option<UserStackAssociation>
Information about the user and associated stack.
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 Default for UserStackAssociationError
impl Default for UserStackAssociationError
Source§fn default() -> UserStackAssociationError
fn default() -> UserStackAssociationError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserStackAssociationError
impl<'de> Deserialize<'de> for UserStackAssociationError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for UserStackAssociationError
Auto Trait Implementations§
impl Freeze for UserStackAssociationError
impl RefUnwindSafe for UserStackAssociationError
impl Send for UserStackAssociationError
impl Sync for UserStackAssociationError
impl Unpin for UserStackAssociationError
impl UnwindSafe for UserStackAssociationError
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