[][src]Struct ages_ice_archive::IceWriter

pub struct IceWriter { /* fields omitted */ }

Type for writing an ICE archive.

Implementations

impl IceWriter[src]

pub fn new(version: u32) -> Result<IceWriter, UnsupportedVersion>[src]

Begin a new ICE archive.

pub fn begin_file<'a>(
    &'a mut self,
    name: &AsciiStr,
    ext: &AsciiStr,
    group: Group
) -> IceFileWriter<'a>
[src]

Begin a file.

The finish method must be called on the file writer to add the file to the archive.

pub fn finish<W: Write>(&self, sink: W) -> Result<()>[src]

Write the composed ICE archive into the given sink.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,