pub enum SpaDetection {
Static,
SuspectedSpa {
text_length: usize,
},
FrameworkDetected {
framework: JsFramework,
},
}Variants§
Trait Implementations§
Source§impl Clone for SpaDetection
impl Clone for SpaDetection
Source§fn clone(&self) -> SpaDetection
fn clone(&self) -> SpaDetection
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 moreSource§impl Debug for SpaDetection
impl Debug for SpaDetection
Source§impl PartialEq for SpaDetection
impl PartialEq for SpaDetection
Source§fn eq(&self, other: &SpaDetection) -> bool
fn eq(&self, other: &SpaDetection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpaDetection
Auto Trait Implementations§
impl Freeze for SpaDetection
impl RefUnwindSafe for SpaDetection
impl Send for SpaDetection
impl Sync for SpaDetection
impl Unpin for SpaDetection
impl UnsafeUnpin for SpaDetection
impl UnwindSafe for SpaDetection
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