We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fatfs recommends using fscommon::BufStream
fatfs
fscommon::BufStream
Note: it is recommended to wrap the underlying file struct in a buffering/caching object like BufStream from fscommon crate. For example: let buf_stream = BufStream::new(img_file); let fs = fatfs::FileSystem::new(buf_stream, fatfs::FsOptions::new())?;
Note: it is recommended to wrap the underlying file struct in a buffering/caching object like BufStream from fscommon crate. For example:
BufStream
fscommon
let buf_stream = BufStream::new(img_file); let fs = fatfs::FileSystem::new(buf_stream, fatfs::FsOptions::new())?;
dfinity/cdk-rs#245 and dfinity/cdk-rs#247 appear to be doing something similar that won’t work out of the box here.
The text was updated successfully, but these errors were encountered:
See also: BufRead, BufReader, and BufWriter: https://github.com/rust-lang/rust/blob/3d237ab52920924694f6fc3e47ee8588514bfa70/library/std/src/io/mod.rs#L38-L120
BufRead
BufReader
BufWriter
Sorry, something went wrong.
No branches or pull requests
fatfs
recommends usingfscommon::BufStream
dfinity/cdk-rs#245 and dfinity/cdk-rs#247 appear to be doing something similar that won’t work out of the box here.
The text was updated successfully, but these errors were encountered: