pub enum EnvironmentFilterAction {
Include,
Exclude,
}Expand description
The action applied to a matching environment-variable pattern.
Include and exclude are evaluated with named precedence rules; their enum declaration order is not an environment authorization order.
Variants§
Include
Retain matching variables when the include allowlist is active.
Exclude
Remove matching variables with deny precedence over inclusion.
Trait Implementations§
Source§impl Clone for EnvironmentFilterAction
impl Clone for EnvironmentFilterAction
impl Copy for EnvironmentFilterAction
Source§impl Debug for EnvironmentFilterAction
impl Debug for EnvironmentFilterAction
impl Eq for EnvironmentFilterAction
Source§impl Hash for EnvironmentFilterAction
impl Hash for EnvironmentFilterAction
Source§impl PartialEq for EnvironmentFilterAction
impl PartialEq for EnvironmentFilterAction
impl StructuralPartialEq for EnvironmentFilterAction
Auto Trait Implementations§
impl Freeze for EnvironmentFilterAction
impl RefUnwindSafe for EnvironmentFilterAction
impl Send for EnvironmentFilterAction
impl Sync for EnvironmentFilterAction
impl Unpin for EnvironmentFilterAction
impl UnsafeUnpin for EnvironmentFilterAction
impl UnwindSafe for EnvironmentFilterAction
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