Struct aws_sdk_swf::error::TypeAlreadyExistsFault
source · [−]#[non_exhaustive]pub struct TypeAlreadyExistsFault { /* private fields */ }
Expand description
Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.
Implementations
sourceimpl TypeAlreadyExistsFault
impl TypeAlreadyExistsFault
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TypeAlreadyExistsFault
.
Trait Implementations
sourceimpl Clone for TypeAlreadyExistsFault
impl Clone for TypeAlreadyExistsFault
sourcefn clone(&self) -> TypeAlreadyExistsFault
fn clone(&self) -> TypeAlreadyExistsFault
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 Debug for TypeAlreadyExistsFault
impl Debug for TypeAlreadyExistsFault
sourceimpl Display for TypeAlreadyExistsFault
impl Display for TypeAlreadyExistsFault
sourceimpl Error for TypeAlreadyExistsFault
impl Error for TypeAlreadyExistsFault
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<TypeAlreadyExistsFault> for TypeAlreadyExistsFault
impl PartialEq<TypeAlreadyExistsFault> for TypeAlreadyExistsFault
sourcefn eq(&self, other: &TypeAlreadyExistsFault) -> bool
fn eq(&self, other: &TypeAlreadyExistsFault) -> bool
impl StructuralPartialEq for TypeAlreadyExistsFault
Auto Trait Implementations
impl RefUnwindSafe for TypeAlreadyExistsFault
impl Send for TypeAlreadyExistsFault
impl Sync for TypeAlreadyExistsFault
impl Unpin for TypeAlreadyExistsFault
impl UnwindSafe for TypeAlreadyExistsFault
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