[][src]Struct efflux::context::Delimiters

pub struct Delimiters { /* fields omitted */ }

Delimiters struct to store the input/output separators for all stages of a MapReduce lifecycle. Once created, this structure should be considered immutable.

Methods

impl Delimiters
[src]

pub fn new(conf: &Configuration) -> Self
[src]

Creates a new Delimiters from a job Configuration.

pub fn input(&self) -> &[u8]
[src]

Returns a reference to the input delimiter.

pub fn output(&self) -> &[u8]
[src]

Returns a reference to the output delimiter.

Trait Implementations

impl Contextual for Delimiters
[src]

impl Debug for Delimiters
[src]

Auto Trait Implementations

impl Send for Delimiters

impl Sync for Delimiters

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]