pub struct BridgeEntry {
pub prefix: &'static [&'static str],
pub enforced: &'static [&'static str],
pub offline_flag: Option<&'static str>,
pub network_meaningful: bool,
}Expand description
One compiled-in external invocation rules may leverage. The table is immutable: a store entry selects from it and can never extend it.
Fields§
§prefix: &'static [&'static str]The argv prefix that must match (program name gated by basename).
enforced: &'static [&'static str]Flags appended unconditionally (when not already present).
offline_flag: Option<&'static str>The hermetic flag appended unless the rule’s network opt-in applies.
network_meaningful: boolWhether network: true is meaningful for this entry.
Auto Trait Implementations§
impl Freeze for BridgeEntry
impl RefUnwindSafe for BridgeEntry
impl Send for BridgeEntry
impl Sync for BridgeEntry
impl Unpin for BridgeEntry
impl UnsafeUnpin for BridgeEntry
impl UnwindSafe for BridgeEntry
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