pub struct ExportSummary {
pub exported_count: u64,
pub exported_rules_count: u64,
pub missing_rules_count: u64,
pub missing_rules: Vec<Value>,
}Expand description
The trailer Kibana appends to an NDJSON export. It is the entire body for a zero-rule export, so it must not be parsed as a rule.
Fields§
§exported_count: u64§exported_rules_count: u64§missing_rules_count: u64§missing_rules: Vec<Value>Rules selected for export but not returned, likely deleted after selection. Kept as raw server values.
Trait Implementations§
Source§impl Clone for ExportSummary
impl Clone for ExportSummary
Source§fn clone(&self) -> ExportSummary
fn clone(&self) -> ExportSummary
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 ExportSummary
impl Debug for ExportSummary
Source§impl<'de> Deserialize<'de> for ExportSummary
impl<'de> Deserialize<'de> for ExportSummary
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 ExportSummary
impl PartialEq for ExportSummary
Source§impl Serialize for ExportSummary
impl Serialize for ExportSummary
impl StructuralPartialEq for ExportSummary
Auto Trait Implementations§
impl Freeze for ExportSummary
impl RefUnwindSafe for ExportSummary
impl Send for ExportSummary
impl Sync for ExportSummary
impl Unpin for ExportSummary
impl UnsafeUnpin for ExportSummary
impl UnwindSafe for ExportSummary
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