[][src]Struct ieql::output::output::OutputBatch

pub struct OutputBatch {
    pub outputs: Vec<Output>,
}

Represents a batch (collection) of outputs. This function tends to be helpful for multiprocessing, though it is somewhat infrequently used.

Fields

outputs: Vec<Output>

Contains the outputs.

Methods

impl OutputBatch
[src]

pub fn merge_with(&mut self, other: OutputBatch)
[src]

Merges the output batch with the other output batch. This function consumes the other output batch, but involves no memory duplication.

pub fn new() -> OutputBatch
[src]

Create a new empty output batch.

Trait Implementations

impl From<Vec<Output>> for OutputBatch
[src]

impl PartialEq<OutputBatch> for OutputBatch
[src]

impl Debug for OutputBatch
[src]

impl Serialize for OutputBatch
[src]

impl<'de> Deserialize<'de> for OutputBatch
[src]

Auto Trait Implementations

impl Send for OutputBatch

impl Sync for OutputBatch

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]