You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stream type in WIT (note no type parameter) is modeled in Rust as StreamReader<()>. This takes a Vec<()> to read into but the capacity of Vec<()> is always usize::MAX. This means there's no way to precisely control the capacity of reads of stream in Rust.