Trait timely::communication::allocator::zero_copy::bytes_exchange::BytesPush
source · pub trait BytesPush {
// Required method
fn extend<I>(&mut self, iter: I)
where I: IntoIterator<Item = Bytes>;
}
Expand description
A target for Bytes
.
Required Methods§
sourcefn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Bytes>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Bytes>,
Pushes many bytes at the instance.
Object Safety§
This trait is not object safe.