Struct nix_compat::nar::writer::sync::Node

source ·
pub struct Node<'a, W: Write> {
    writer: &'a mut W,
}
Expand description

Single node in a NAR file.

A NAR can be thought of as a tree of nodes represented by this type. Each node can be a file, a symlink or a directory containing other nodes.

Fields§

§writer: &'a mut W

Implementations§

source§

impl<'a, W: Write> Node<'a, W>

source

fn write(&mut self, data: &[u8]) -> Result<()>

source

fn pad(&mut self, n: u64) -> Result<()>

Make this node a symlink.

source

pub fn file( self, executable: bool, size: u64, reader: &mut dyn BufRead, ) -> Result<()>

Make this node a single file.

source

pub fn file_manual_write( self, executable: bool, size: u64, ) -> Result<(&'a mut W, FileManualWrite)>

Make this node a single file but let the user handle the writing of the file contents. The user gets access to a writer to write the file contents to, plus a struct they must invoke a function on to finish writing the NAR file.

It is the caller’s responsibility to write the correct number of bytes to the writer and invoke FileManualWrite::close, or invalid archives will be produced silently.

let contents = "Hello world\n".as_bytes();
let size = contents.len() as u64;
let executable = false;

let (writer, skip) = nar
    .file_manual_write(executable, size)?;

// Write the contents
writer.write_all(&contents)?;

// Close the file node
skip.close(writer)?;
source

pub fn directory(self) -> Result<Directory<'a, W>>

Make this node a directory, the content of which is set using the resulting Directory value.

It is the caller’s responsibility to invoke Directory::close, or invalid archives will be produced silently.

Auto Trait Implementations§

§

impl<'a, W> Freeze for Node<'a, W>

§

impl<'a, W> RefUnwindSafe for Node<'a, W>
where W: RefUnwindSafe,

§

impl<'a, W> Send for Node<'a, W>
where W: Send,

§

impl<'a, W> Sync for Node<'a, W>
where W: Sync,

§

impl<'a, W> Unpin for Node<'a, W>

§

impl<'a, W> !UnwindSafe for Node<'a, W>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more