Home
last modified time | relevance | path

Searched refs:ChunksIntoIter (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/
H A Dchunk.rs730 pub struct ChunksIntoIter<'a> { struct
754 impl ChunksIntoIter<'_> { argument
755 fn new(into_iter: std::vec::IntoIter<Chunk>) -> ChunksIntoIter { in new() argument
756 ChunksIntoIter { into_iter } in new()
760 impl<'a> Iterator for ChunksIntoIter<'a> { implementation
768 impl<'a> Deref for ChunksIntoIter<'a> { implementation
793 type IntoIter = ChunksIntoIter<'a>;
796 ChunksIntoIter::new(self.chunks.into_iter()) in into_iter()