pub struct DxCompressed { /* private fields */ }Expand description
Compressed DX-Machine buffer
Wraps compressed data with lazy decompression. The first access triggers decompression, subsequent accesses use cache.
Implementations§
Source§impl DxCompressed
impl DxCompressed
Sourcepub fn compress(data: &[u8]) -> Self
pub fn compress(data: &[u8]) -> Self
Compress data using LZ4 (fast, pure Rust)
LZ4 provides good compression with excellent speed (pure Rust, no C dependencies).
Sourcepub fn compress_level(data: &[u8], _level: CompressionLevel) -> Self
pub fn compress_level(data: &[u8], _level: CompressionLevel) -> Self
Compress with level hint
Sourcepub fn compressed_size(&self) -> usize
pub fn compressed_size(&self) -> usize
Get compressed size
Sourcepub fn original_size(&self) -> usize
pub fn original_size(&self) -> usize
Get original (uncompressed) size
Sourcepub fn as_compressed(&self) -> &[u8] ⓘ
pub fn as_compressed(&self) -> &[u8] ⓘ
Get compressed bytes
Sourcepub fn decompress(&mut self) -> Result<&[u8]>
pub fn decompress(&mut self) -> Result<&[u8]>
Decompress and get data
First call triggers decompression, subsequent calls use cache.
Sourcepub fn decompress_owned(&self) -> Result<Vec<u8>>
pub fn decompress_owned(&self) -> Result<Vec<u8>>
Force decompress and return owned data
Sourcepub fn clear_cache(&mut self)
pub fn clear_cache(&mut self)
Clear the decompression cache
Sourcepub fn from_compressed(compressed: Vec<u8>, original_size: u32) -> Self
pub fn from_compressed(compressed: Vec<u8>, original_size: u32) -> Self
Create from pre-compressed data
Trait Implementations§
Source§impl Debug for DxCompressed
impl Debug for DxCompressed
Auto Trait Implementations§
impl Freeze for DxCompressed
impl RefUnwindSafe for DxCompressed
impl Send for DxCompressed
impl Sync for DxCompressed
impl Unpin for DxCompressed
impl UnsafeUnpin for DxCompressed
impl UnwindSafe for DxCompressed
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.