pub struct AttachPlan {
pub case_id: String,
pub groups: Vec<AttachGroup>,
pub resolved: usize,
pub preview_action: String,
pub preview_details: Vec<String>,
}Fields§
§case_id: String§groups: Vec<AttachGroup>§resolved: usizeThe resolved, deduplicated alert count the preview names — what a dry-run stub must report, not the raw argv count.
preview_action: String§preview_details: Vec<String>Trait Implementations§
Source§impl Clone for AttachPlan
impl Clone for AttachPlan
Source§fn clone(&self) -> AttachPlan
fn clone(&self) -> AttachPlan
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 AttachPlan
impl Debug for AttachPlan
Source§impl PartialEq for AttachPlan
impl PartialEq for AttachPlan
impl StructuralPartialEq for AttachPlan
Auto Trait Implementations§
impl Freeze for AttachPlan
impl RefUnwindSafe for AttachPlan
impl Send for AttachPlan
impl Sync for AttachPlan
impl Unpin for AttachPlan
impl UnsafeUnpin for AttachPlan
impl UnwindSafe for AttachPlan
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