pub struct SpxBuilder<W> { /* private fields */ }
Expand description
Compile-time [FileMap
] builder
Implementations§
Source§impl<W: Write + Seek> SpxBuilder<W>
impl<W: Write + Seek> SpxBuilder<W>
Sourcepub fn new(writer: W) -> Self
pub fn new(writer: W) -> Self
Create new builder
Examples found in repository?
examples/archive.rs (line 13)
11fn main() -> Result<(), Box<dyn Error>> {
12 let mut data = Vec::new();
13 let mut builder = SpxBuilder::new(Cursor::new(&mut data));
14
15 builder.write_stream("hello world.txt".into(), Cursor::new(&"Hello world!"))?;
16 builder.write_stream("example".into(), Cursor::new(&"asdf"))?;
17
18 println!("map: {}", builder.build());
19 println!("archive: {:?}", data);
20
21 Ok(())
22}
Sourcepub fn start_file(&mut self, name: String) -> Result<SpxFileEntry<'_, W>>
pub fn start_file(&mut self, name: String) -> Result<SpxFileEntry<'_, W>>
Start new file entry
Sourcepub fn build(&self) -> Display<'_>
pub fn build(&self) -> Display<'_>
Generate and return [FileMap
] code
Examples found in repository?
examples/archive.rs (line 18)
11fn main() -> Result<(), Box<dyn Error>> {
12 let mut data = Vec::new();
13 let mut builder = SpxBuilder::new(Cursor::new(&mut data));
14
15 builder.write_stream("hello world.txt".into(), Cursor::new(&"Hello world!"))?;
16 builder.write_stream("example".into(), Cursor::new(&"asdf"))?;
17
18 println!("map: {}", builder.build());
19 println!("archive: {:?}", data);
20
21 Ok(())
22}
Trait Implementations§
Source§impl<W: Debug> Debug for SpxBuilder<W>
impl<W: Debug> Debug for SpxBuilder<W>
Auto Trait Implementations§
impl<W> Freeze for SpxBuilder<W>where
W: Freeze,
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> 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