pub struct CompressResult {
pub text: String,
pub stats: CompressStats,
}Expand description
The result of a compression pass: the rendered text plus its statistics.
Fields§
§text: String§stats: CompressStatsTrait Implementations§
Source§impl Clone for CompressResult
impl Clone for CompressResult
Source§fn clone(&self) -> CompressResult
fn clone(&self) -> CompressResult
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 Freeze for CompressResult
impl RefUnwindSafe for CompressResult
impl Send for CompressResult
impl Sync for CompressResult
impl Unpin for CompressResult
impl UnsafeUnpin for CompressResult
impl UnwindSafe for CompressResult
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