Struct differential_dataflow::operators::arrange::BatchWrapper [] [src]

pub struct BatchWrapper<T> {
    pub item: T,
}

Wrapper type to permit transfer of Rc types, as in batch.

The BatchWrappers sole purpose in life is to implement Abomonation with methods that panic when called. This allows the wrapped data to be transited along timely's Pipeline channels. The wrapper cannot fake out Send, and so cannot be used on timely's Exchange channels, which is good.

Fields

The wrapped item.

Trait Implementations

impl<T: Clone> Clone for BatchWrapper<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Eq> Eq for BatchWrapper<T>
[src]

impl<T: PartialEq> PartialEq for BatchWrapper<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T: Debug> Debug for BatchWrapper<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T> Abomonation for BatchWrapper<T>
[src]

[src]

Write any additional information about &self beyond its binary representation. Read more

[src]

Recover any information for &mut self not evident from its binary representation. Read more

[src]

Reports the number of further bytes required to entomb self.

Auto Trait Implementations

impl<T> Send for BatchWrapper<T> where
    T: Send

impl<T> Sync for BatchWrapper<T> where
    T: Sync