#[non_exhaustive]pub enum Area {
Cfg,
Res,
Reg,
Prov,
Net,
Vrf,
Store,
Inst,
Env,
Lock,
Sys,
Int,
}Expand description
Subsystem area of an error code. The string form (CFG, RES, …) is stable.
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.
Cfg
Config / manifest (vanta-config).
Res
Resolution / versioning (vanta-resolve).
Reg
Registry (vanta-registry).
Prov
Provider / sandbox (vanta-provider).
Net
Network / download (vanta-net).
Vrf
Verification / security (vanta-security).
Store
Store / state / IO (vanta-store, vanta-state).
Inst
Install engine (vanta-install).
Env
Environment / activation (vanta-env).
Lock
Lockfile (vanta-lock).
Sys
Platform (vanta-platform).
Int
Internal (a bug).
Implementations§
Trait Implementations§
impl Copy for Area
impl Eq for Area
impl StructuralPartialEq for Area
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnsafeUnpin for Area
impl UnwindSafe for Area
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