pub struct OpticalImageWriter<W: Read + Write + Seek> { /* private fields */ }Expand description
Writer for creating hybrid ISO+UDF CD/DVD images
Implementations§
Source§impl<W: Read + Write + Seek> OpticalImageWriter<W>
impl<W: Read + Write + Seek> OpticalImageWriter<W>
Sourcepub fn new(writer: W, options: OpticalImageOptions) -> Self
pub fn new(writer: W, options: OpticalImageOptions) -> Self
Create a new CD writer
Sourcepub fn create(
writer: W,
tree: FileTree,
options: OpticalImageOptions,
) -> Result<W>
pub fn create( writer: W, tree: FileTree, options: OpticalImageOptions, ) -> Result<W>
Creates an optical image and returns its output target.
Sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Returns the output target without writing an image.
Auto Trait Implementations§
impl<W> Freeze for OpticalImageWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for OpticalImageWriter<W>where
W: RefUnwindSafe,
impl<W> Send for OpticalImageWriter<W>where
W: Send,
impl<W> Sync for OpticalImageWriter<W>where
W: Sync,
impl<W> Unpin for OpticalImageWriter<W>where
W: Unpin,
impl<W> UnsafeUnpin for OpticalImageWriter<W>where
W: UnsafeUnpin,
impl<W> UnwindSafe for OpticalImageWriter<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