[][src]Struct suricata_ipc::Ids

pub struct Ids<'a, T> { /* fields omitted */ }

Implementations

impl<'a, M> Ids<'a, M>[src]

pub fn send<'b, T: AsIpcPacket + 'a>(
    &'a self,
    packets: &'b [T]
) -> Result<usize, Error>
[src]

pub fn close(&mut self) -> Result<(), Error>[src]

pub fn take_readers(&mut self) -> Vec<EveReader<M>>[src]

pub fn reload_rules(&self) -> bool[src]

pub async fn new(args: Config) -> Result<Ids<'a, M>, Error> where
    M: Send + 'static, 
[src]

Trait Implementations

impl<'a, T> Send for Ids<'a, T>[src]

impl<'a, T> Sync for Ids<'a, T>[src]

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Ids<'a, T>

impl<'a, T> Unpin for Ids<'a, T>

impl<'a, T> UnwindSafe for Ids<'a, T> where
    T: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,