pub enum MinifyLevel {
None,
Whitespace,
Syntax,
Identifiers,
}
Expand description
The level of minification to apply to the bindings
Variants§
None
Don’t minify the bindings
Whitespace
Minify whitespace
Syntax
Minify whitespace and syntax
Identifiers
Minify whitespace, syntax, and identifiers
Trait Implementations§
Source§impl Clone for MinifyLevel
impl Clone for MinifyLevel
Source§fn clone(&self) -> MinifyLevel
fn clone(&self) -> MinifyLevel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MinifyLevel
impl Debug for MinifyLevel
Source§impl Default for MinifyLevel
impl Default for MinifyLevel
Source§fn default() -> MinifyLevel
fn default() -> MinifyLevel
Returns the “default value” for a type. Read more
impl Copy for MinifyLevel
Auto Trait Implementations§
impl Freeze for MinifyLevel
impl RefUnwindSafe for MinifyLevel
impl Send for MinifyLevel
impl Sync for MinifyLevel
impl Unpin for MinifyLevel
impl UnwindSafe for MinifyLevel
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