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