nix_compat::derivation::write

Trait AtermWriteable

Source
pub(crate) trait AtermWriteable {
    // Required method
    fn aterm_write(&self, writer: &mut impl Write) -> Result<()>;
}
Expand description

Something that can be written as ATerm.

Note that we mostly use explicit write_* calls instead since the serialization of the items depends on the context a lot.

Required Methods§

Source

fn aterm_write(&self, writer: &mut impl Write) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AtermWriteable for String

Source§

fn aterm_write(&self, writer: &mut impl Write) -> Result<()>

Source§

impl AtermWriteable for [u8; 32]

Source§

fn aterm_write(&self, writer: &mut impl Write) -> Result<()>

Implementors§

Source§

impl<S> AtermWriteable for StorePath<S>
where S: AsRef<str>,