pub async fn write_strings<W: AsyncWriteExt + Unpin, I>(
w: &mut W,
si: I,
) -> Result<()>where
I: IntoIterator + Send,
I::IntoIter: ExactSizeIterator + Send,
I::Item: AsRef<str> + Send + Sync,
Expand description
Write a list of strings to the stream.