pub enum EnvCap {
Deny,
AllowAll,
Allow(Vec<String>),
}Expand description
Capability for reading environment variables (D1): denied by default.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnvCap
impl RefUnwindSafe for EnvCap
impl Send for EnvCap
impl Sync for EnvCap
impl Unpin for EnvCap
impl UnsafeUnpin for EnvCap
impl UnwindSafe for EnvCap
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