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
item: T
The wrapped item.
Trait Implementations
impl<T: Clone> Clone for BatchWrapper<T>[src]
fn clone(&self) -> BatchWrapper<T>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)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]
fn eq(&self, __arg_0: &BatchWrapper<T>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BatchWrapper<T>) -> bool[src]
This method tests for !=.
impl<T: Debug> Debug for BatchWrapper<T>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<T> Abomonation for BatchWrapper<T>[src]
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>[src]
Write any additional information about &self beyond its binary representation. Read more
unsafe fn exhume<'a, 'b>(
&'a mut self,
_bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>[src]
&'a mut self,
_bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>
Recover any information for &mut self not evident from its binary representation. Read more
fn extent(&self) -> usize[src]
Reports the number of further bytes required to entomb self.
Auto Trait Implementations
impl<T> Send for BatchWrapper<T> where
T: Send,
T: Send,
impl<T> Sync for BatchWrapper<T> where
T: Sync,
T: Sync,