pub struct IOStreams<'a, I, O, E>{
pub in_s: &'a mut I,
pub out_s: &'a mut O,
pub err_s: &'a mut E,
}Fields§
§in_s: &'a mut I§out_s: &'a mut O§err_s: &'a mut EAuto Trait Implementations§
impl<'a, I, O, E> Freeze for IOStreams<'a, I, O, E>
impl<'a, I, O, E> RefUnwindSafe for IOStreams<'a, I, O, E>
impl<'a, I, O, E> Send for IOStreams<'a, I, O, E>
impl<'a, I, O, E> Sync for IOStreams<'a, I, O, E>
impl<'a, I, O, E> Unpin for IOStreams<'a, I, O, E>
impl<'a, I, O, E> !UnwindSafe for IOStreams<'a, I, O, E>
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