pub struct FlowMatchRule {
pub argv: Vec<String>,
}Expand description
One [flows.match."cmd:<name>"] rule (CCR-5): the argv patterns an
in-process subprocess call site must match to be dispatched as this cmd:
flow. argv is a list of per-position patterns (single-* wildcard
dialect, docs/targeting.md); parsed and carried here, the matching itself
lives in the front-end interceptors. Only in-process interception consults
these — keel exec matches the argv typed after --.
Fields§
§argv: Vec<String>Trait Implementations§
Source§impl Clone for FlowMatchRule
impl Clone for FlowMatchRule
Source§fn clone(&self) -> FlowMatchRule
fn clone(&self) -> FlowMatchRule
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 moreSource§impl Debug for FlowMatchRule
impl Debug for FlowMatchRule
Source§impl Default for FlowMatchRule
impl Default for FlowMatchRule
Source§fn default() -> FlowMatchRule
fn default() -> FlowMatchRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowMatchRule
impl<'de> Deserialize<'de> for FlowMatchRule
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FlowMatchRule
Source§impl PartialEq for FlowMatchRule
impl PartialEq for FlowMatchRule
impl StructuralPartialEq for FlowMatchRule
Auto Trait Implementations§
impl Freeze for FlowMatchRule
impl RefUnwindSafe for FlowMatchRule
impl Send for FlowMatchRule
impl Sync for FlowMatchRule
impl Unpin for FlowMatchRule
impl UnsafeUnpin for FlowMatchRule
impl UnwindSafe for FlowMatchRule
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