pub enum DeleteGitHubAccountTokenError {
GitHubAccountTokenDoesNotExist(String),
GitHubAccountTokenNameRequired(String),
InvalidGitHubAccountTokenName(String),
OperationNotSupported(String),
ResourceValidation(String),
}
Expand description
Errors returned by DeleteGitHubAccountToken
Variants§
GitHubAccountTokenDoesNotExist(String)
No GitHub account connection exists with the named specified in the call.
GitHubAccountTokenNameRequired(String)
The call is missing a required GitHub account connection name.
InvalidGitHubAccountTokenName(String)
The format of the specified GitHub account connection name is invalid.
OperationNotSupported(String)
The API used does not support the deployment.
ResourceValidation(String)
The specified resource could not be validated.
Implementations§
Trait Implementations§
Source§impl Error for DeleteGitHubAccountTokenError
impl Error for DeleteGitHubAccountTokenError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DeleteGitHubAccountTokenError
impl PartialEq for DeleteGitHubAccountTokenError
Source§fn eq(&self, other: &DeleteGitHubAccountTokenError) -> bool
fn eq(&self, other: &DeleteGitHubAccountTokenError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteGitHubAccountTokenError
Auto Trait Implementations§
impl Freeze for DeleteGitHubAccountTokenError
impl RefUnwindSafe for DeleteGitHubAccountTokenError
impl Send for DeleteGitHubAccountTokenError
impl Sync for DeleteGitHubAccountTokenError
impl Unpin for DeleteGitHubAccountTokenError
impl UnwindSafe for DeleteGitHubAccountTokenError
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