pub enum JsFramework {
React,
Vue,
Angular,
Next,
Nuxt,
Unknown(String),
}Variants§
Trait Implementations§
Source§impl Clone for JsFramework
impl Clone for JsFramework
Source§fn clone(&self) -> JsFramework
fn clone(&self) -> JsFramework
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 JsFramework
impl Debug for JsFramework
Source§impl PartialEq for JsFramework
impl PartialEq for JsFramework
Source§fn eq(&self, other: &JsFramework) -> bool
fn eq(&self, other: &JsFramework) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JsFramework
Auto Trait Implementations§
impl Freeze for JsFramework
impl RefUnwindSafe for JsFramework
impl Send for JsFramework
impl Sync for JsFramework
impl Unpin for JsFramework
impl UnsafeUnpin for JsFramework
impl UnwindSafe for JsFramework
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