pub trait AsyncBufReadUntilSliceExt: AsyncBufRead {
// Provided method
fn read_until_slice<'a, 'b>(
&'a mut self,
delimiter: &'b [u8],
buf: &'a mut Vec<u8>,
) -> ReadUntilSlice<'a, 'b, Self>
where Self: Unpin { ... }
}
Provided Methods§
fn read_until_slice<'a, 'b>(
&'a mut self,
delimiter: &'b [u8],
buf: &'a mut Vec<u8>,
) -> ReadUntilSlice<'a, 'b, Self>where
Self: Unpin,
Object Safety§
This trait is not object safe.