pub struct MaxBufSize {
pub stdin: usize,
pub stdout: usize,
pub stderr: usize,
}Expand description
A struct to configure the sizes of the internal buffers used for stdio.
Fields§
§stdin: usizeThe maximum size of the internal buffer for stdin
stdout: usizeThe maximum size of the internal buffer for stdout
stderr: usizeThe maximum size of the internal buffer for stderr
Trait Implementations§
Source§impl Clone for MaxBufSize
impl Clone for MaxBufSize
Source§fn clone(&self) -> MaxBufSize
fn clone(&self) -> MaxBufSize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MaxBufSize
impl Debug for MaxBufSize
Source§impl Default for MaxBufSize
impl Default for MaxBufSize
impl Copy for MaxBufSize
Auto Trait Implementations§
impl Freeze for MaxBufSize
impl RefUnwindSafe for MaxBufSize
impl Send for MaxBufSize
impl Sync for MaxBufSize
impl Unpin for MaxBufSize
impl UnwindSafe for MaxBufSize
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more