pub struct NixRead<R> {
pub inner: R,
}
Expand description
A wrapper around a std::io::Read
, adding support for the nix wire format.
Fields§
§inner: R
Implementations§
Auto Trait Implementations§
impl<R> Freeze for NixRead<R>where
R: Freeze,
impl<R> RefUnwindSafe for NixRead<R>where
R: RefUnwindSafe,
impl<R> Send for NixRead<R>where
R: Send,
impl<R> Sync for NixRead<R>where
R: Sync,
impl<R> Unpin for NixRead<R>where
R: Unpin,
impl<R> UnwindSafe for NixRead<R>where
R: UnwindSafe,
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