Struct usiem_basic_parser::BasicParserComponent[][src]

pub struct BasicParserComponent { /* fields omitted */ }

Implementations

impl BasicParserComponent[src]

pub fn new() -> BasicParserComponent[src]

pub fn add_parser(&mut self, parser: Box<dyn LogParser>)[src]

Trait Implementations

impl SiemComponent for BasicParserComponent[src]

fn run(&mut self)[src]

Execute the logic of this component in an infinite loop. Must be stopped using Commands sent using the channel.

fn set_storage(&mut self, conn: Box<dyn SiemComponentStateStorage>)[src]

Allow to store information about this component like the state or conigurations.

fn capabilities(&self) -> SiemComponentCapabilities[src]

Capabilities and actions that can be performed on this component

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.