Struct tempfile::SpooledTempFile [−][src]
pub struct SpooledTempFile { /* fields omitted */ }
An object that behaves like a regular temporary file, but keeps data in memory until it reaches a configured size, at which point the data is written to a temporary file on disk, and further operations use the file on disk.
Implementations
impl SpooledTempFile
[src]
impl SpooledTempFile
[src]pub fn new(max_size: usize) -> SpooledTempFileⓘNotable traits for SpooledTempFile
impl Read for SpooledTempFileimpl Write for SpooledTempFile
[src]
Notable traits for SpooledTempFile
impl Read for SpooledTempFileimpl Write for SpooledTempFile
pub fn is_rolled(&self) -> bool
[src]
Returns true if the file has been rolled over to disk.
pub fn roll(&mut self) -> Result<()>
[src]
Rolls over to a file on disk, regardless of current size. Does nothing if already rolled over.
pub fn set_len(&mut self, size: u64) -> Result<(), Error>
[src]
Trait Implementations
impl Read for SpooledTempFile
[src]
impl Read for SpooledTempFile
[src]fn read(&mut self, buf: &mut [u8]) -> Result<usize>
[src]
pub fn read_vectored(
&mut self,
bufs: &mut [IoSliceMut<'_>]
) -> Result<usize, Error>
1.36.0[src]
&mut self,
bufs: &mut [IoSliceMut<'_>]
) -> Result<usize, Error>
pub fn is_read_vectored(&self) -> bool
[src]
pub unsafe fn initializer(&self) -> Initializer
[src]
pub fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
1.0.0[src]
pub fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0[src]
pub fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
1.6.0[src]
pub fn by_ref(&mut self) -> &mut Self
1.0.0[src]
pub fn bytes(self) -> Bytes<Self>
1.0.0[src]
pub fn chain<R>(self, next: R) -> Chain<Self, R> where
R: Read,
1.0.0[src]
R: Read,
pub fn take(self, limit: u64) -> Take<Self>
1.0.0[src]
impl Seek for SpooledTempFile
[src]
impl Seek for SpooledTempFile
[src]impl Write for SpooledTempFile
[src]
impl Write for SpooledTempFile
[src]fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src]
pub fn is_write_vectored(&self) -> bool
[src]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>