pub enum MinifyWarning {
LineCommentConverted,
}Expand description
Per-block warnings the minifier may produce. The LLM emit pass is
responsible for translating these into stderr warning[Bxxxx]: … lines.
Variants§
LineCommentConverted
A // line comment was rewritten into /* */ block-comment form so
it survived a single-line minification. The user owns the risk that
the comment body contains */.
Trait Implementations§
Source§impl Clone for MinifyWarning
impl Clone for MinifyWarning
Source§fn clone(&self) -> MinifyWarning
fn clone(&self) -> MinifyWarning
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 MinifyWarning
impl RefUnwindSafe for MinifyWarning
impl Send for MinifyWarning
impl Sync for MinifyWarning
impl Unpin for MinifyWarning
impl UnsafeUnpin for MinifyWarning
impl UnwindSafe for MinifyWarning
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