#[non_exhaustive]pub enum EnvironmentFileLoadError {
Denied,
}Expand description
Bounded failure categories for a caller-owned environment-file provider.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Denied
The caller did not authorize this request.
Trait Implementations§
Source§impl Clone for EnvironmentFileLoadError
impl Clone for EnvironmentFileLoadError
Source§fn clone(&self) -> EnvironmentFileLoadError
fn clone(&self) -> EnvironmentFileLoadError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EnvironmentFileLoadError
Source§impl Debug for EnvironmentFileLoadError
impl Debug for EnvironmentFileLoadError
impl Eq for EnvironmentFileLoadError
Source§impl PartialEq for EnvironmentFileLoadError
impl PartialEq for EnvironmentFileLoadError
impl StructuralPartialEq for EnvironmentFileLoadError
Auto Trait Implementations§
impl Freeze for EnvironmentFileLoadError
impl RefUnwindSafe for EnvironmentFileLoadError
impl Send for EnvironmentFileLoadError
impl Sync for EnvironmentFileLoadError
impl Unpin for EnvironmentFileLoadError
impl UnsafeUnpin for EnvironmentFileLoadError
impl UnwindSafe for EnvironmentFileLoadError
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