pub struct EvtxRecord<'a> {
pub chunk: &'a EvtxChunk<'a>,
pub event_record_id: RecordId,
pub timestamp: Timestamp,
pub tree: IrTree<'a>,
pub binxml_offset: u64,
pub binxml_size: u32,
pub settings: Arc<ParserSettings>,
}Fields§
§chunk: &'a EvtxChunk<'a>§event_record_id: RecordId§timestamp: Timestamp§tree: IrTree<'a>§binxml_offset: u64§binxml_size: u32§settings: Arc<ParserSettings>Implementations§
Source§impl<'a> EvtxRecord<'a>
impl<'a> EvtxRecord<'a>
Sourcepub fn into_json_value(self) -> Result<SerializedEvtxRecord<Value>>
pub fn into_json_value(self) -> Result<SerializedEvtxRecord<Value>>
Consumes the record and returns the rendered JSON as a serde_json::Value.
Sourcepub fn into_json(self) -> Result<SerializedEvtxRecord<String>>
pub fn into_json(self) -> Result<SerializedEvtxRecord<String>>
Consumes the record and renders it as compact JSON (streaming IR renderer).
Sourcepub fn into_xml(self) -> Result<SerializedEvtxRecord<String>>
pub fn into_xml(self) -> Result<SerializedEvtxRecord<String>>
Consumes the record and parse it, producing an XML serialized record.
Sourcepub fn template_instances(&self) -> Result<Vec<BinXmlTemplateValues<'a>>>
pub fn template_instances(&self) -> Result<Vec<BinXmlTemplateValues<'a>>>
Parse all TemplateInstance substitution arrays from this record.
This is a lightweight scan over the record’s BinXML stream that extracts typed substitution values without building a legacy token vector.
Trait Implementations§
Source§impl<'a> Clone for EvtxRecord<'a>
impl<'a> Clone for EvtxRecord<'a>
Source§fn clone(&self) -> EvtxRecord<'a>
fn clone(&self) -> EvtxRecord<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for EvtxRecord<'a>
impl<'a> !RefUnwindSafe for EvtxRecord<'a>
impl<'a> !Send for EvtxRecord<'a>
impl<'a> !Sync for EvtxRecord<'a>
impl<'a> Unpin for EvtxRecord<'a>
impl<'a> !UnwindSafe for EvtxRecord<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more