pub enum PreflightError {
GcloudNotInstalled,
NotAuthenticated,
ProjectNotAccessible(String),
ApiCheckFailed {
api: String,
source: GcloudError,
},
}Variants§
Trait Implementations§
Source§impl Debug for PreflightError
impl Debug for PreflightError
Source§impl Display for PreflightError
impl Display for PreflightError
Source§impl Error for PreflightError
impl Error for PreflightError
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()
Auto Trait Implementations§
impl Freeze for PreflightError
impl !RefUnwindSafe for PreflightError
impl Send for PreflightError
impl Sync for PreflightError
impl Unpin for PreflightError
impl UnsafeUnpin for PreflightError
impl !UnwindSafe for PreflightError
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