pub enum CodeScanningGetAlertError {
Status304,
Status403(BasicError),
Status404(BasicError),
Status503(GetBillingGetGithubBillingUsageReportUserResponse503),
Generic {
code: u16,
},
}Expand description
Errors for the Get a code scanning alert endpoint.
Variants§
Status304
Status403(BasicError)
Status404(BasicError)
Status503(GetBillingGetGithubBillingUsageReportUserResponse503)
Generic
Trait Implementations§
Source§impl Debug for CodeScanningGetAlertError
impl Debug for CodeScanningGetAlertError
Source§impl Display for CodeScanningGetAlertError
impl Display for CodeScanningGetAlertError
Source§impl Error for CodeScanningGetAlertError
impl Error for CodeScanningGetAlertError
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 From<CodeScanningGetAlertError> for AdapterError
impl From<CodeScanningGetAlertError> for AdapterError
Source§fn from(err: CodeScanningGetAlertError) -> Self
fn from(err: CodeScanningGetAlertError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeScanningGetAlertError
impl RefUnwindSafe for CodeScanningGetAlertError
impl Send for CodeScanningGetAlertError
impl Sync for CodeScanningGetAlertError
impl Unpin for CodeScanningGetAlertError
impl UnwindSafe for CodeScanningGetAlertError
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