#[non_exhaustive]pub struct Rar50VolumeWriter<'a> { /* private fields */ }Implementations§
Source§impl<'a> Rar50VolumeWriter<'a>
impl<'a> Rar50VolumeWriter<'a>
pub fn new(options: WriterOptions) -> Self
pub fn stored_entry(self, entry: StoredEntry<'a>) -> Self
pub fn compressed_entries(self, entries: &'a [CompressedEntry<'a>]) -> Self
pub fn encrypted_stored_entry(self, entry: EncryptedStoredEntry<'a>) -> Self
pub fn encrypted_compressed_entries( self, entries: &'a [EncryptedCompressedEntry<'a>], ) -> Self
pub fn max_payload_per_volume(self, size: usize) -> Self
pub fn recovery_percent(self, percent: Option<u64>) -> Self
pub fn finish(self) -> Result<Vec<Vec<u8>>>
Trait Implementations§
Source§impl<'a> Clone for Rar50VolumeWriter<'a>
impl<'a> Clone for Rar50VolumeWriter<'a>
Source§fn clone(&self) -> Rar50VolumeWriter<'a>
fn clone(&self) -> Rar50VolumeWriter<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for Rar50VolumeWriter<'a>
impl<'a> RefUnwindSafe for Rar50VolumeWriter<'a>
impl<'a> Send for Rar50VolumeWriter<'a>
impl<'a> Sync for Rar50VolumeWriter<'a>
impl<'a> Unpin for Rar50VolumeWriter<'a>
impl<'a> UnsafeUnpin for Rar50VolumeWriter<'a>
impl<'a> UnwindSafe for Rar50VolumeWriter<'a>
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