pub struct OpenItemsConfig {
pub muted: Vec<String>,
}Expand description
Display policy for mur open.
Lives in config.yaml rather than in open-items.jsonl because that log
is append-only and agent-writable via the open_item tool. A user’s
decision to stop looking at a source must not be overturnable by an agent
appending a record. Same reasoning as fleet_run.agents.
Fields§
§muted: Vec<String>Exact origin strings to collapse out of mur open. Exact match
only — fleet never matches fleet:acme.
Trait Implementations§
Source§impl Clone for OpenItemsConfig
impl Clone for OpenItemsConfig
Source§fn clone(&self) -> OpenItemsConfig
fn clone(&self) -> OpenItemsConfig
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 OpenItemsConfig
impl Debug for OpenItemsConfig
Source§impl Default for OpenItemsConfig
impl Default for OpenItemsConfig
Source§fn default() -> OpenItemsConfig
fn default() -> OpenItemsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OpenItemsConfig
impl<'de> Deserialize<'de> for OpenItemsConfig
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
Source§impl PartialEq for OpenItemsConfig
impl PartialEq for OpenItemsConfig
Source§impl Serialize for OpenItemsConfig
impl Serialize for OpenItemsConfig
impl StructuralPartialEq for OpenItemsConfig
Auto Trait Implementations§
impl Freeze for OpenItemsConfig
impl RefUnwindSafe for OpenItemsConfig
impl Send for OpenItemsConfig
impl Sync for OpenItemsConfig
impl Unpin for OpenItemsConfig
impl UnsafeUnpin for OpenItemsConfig
impl UnwindSafe for OpenItemsConfig
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