Struct spx_codegen::SpxBuilder

source ·
pub struct SpxBuilder<W> { /* private fields */ }
Expand description

Compile-time [FileMap] builder

Implementations§

source§

impl<W: Write + Seek> SpxBuilder<W>

source

pub fn new(writer: W) -> Self

Create new builder

Examples found in repository?
examples/archive.rs (line 13)
11
12
13
14
15
16
17
18
19
20
21
22
fn main() -> Result<(), Box<dyn Error>> {
    let mut data = Vec::new();
    let mut builder = SpxBuilder::new(Cursor::new(&mut data));

    builder.write_stream("hello world.txt".into(), Cursor::new(&"Hello world!"))?;
    builder.write_stream("example".into(), Cursor::new(&"asdf"))?;

    println!("map: {}", builder.build());
    println!("archive: {:?}", data);

    Ok(())
}
source

pub fn start_file(&mut self, name: String) -> Result<SpxFileEntry<'_, W>>

Start new file entry

source

pub fn build(&self) -> Display<'_>

Generate and return [FileMap] code

Examples found in repository?
examples/archive.rs (line 18)
11
12
13
14
15
16
17
18
19
20
21
22
fn main() -> Result<(), Box<dyn Error>> {
    let mut data = Vec::new();
    let mut builder = SpxBuilder::new(Cursor::new(&mut data));

    builder.write_stream("hello world.txt".into(), Cursor::new(&"Hello world!"))?;
    builder.write_stream("example".into(), Cursor::new(&"asdf"))?;

    println!("map: {}", builder.build());
    println!("archive: {:?}", data);

    Ok(())
}

Trait Implementations§

source§

impl<W: Debug> Debug for SpxBuilder<W>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<W: Write + Seek> FileExt<W> for SpxBuilder<W>

source§

fn from_dir(&mut self, base: impl AsRef<Path>) -> Result<u64>

Write every disk files from base directory
source§

impl<W: Write + Seek> StreamExt<W> for SpxBuilder<W>

source§

fn write_stream(&mut self, name: String, stream: impl Read) -> Result<u64>

Write a file entry from Read stream

Auto Trait Implementations§

§

impl<W> RefUnwindSafe for SpxBuilder<W>where W: RefUnwindSafe,

§

impl<W> Send for SpxBuilder<W>where W: Send,

§

impl<W> Sync for SpxBuilder<W>where W: Sync,

§

impl<W> Unpin for SpxBuilder<W>where W: Unpin,

§

impl<W> UnwindSafe for SpxBuilder<W>where W: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.