pub struct ModernJsFeatureInfo {
pub feature_type: ModernFeatureType,
pub usage_pattern: String,
pub complexity_score: i32,
pub best_practices: Vec<String>,
pub typescript_specific: bool,
}
Expand description
Modern JavaScript feature information
Fields§
§feature_type: ModernFeatureType
§usage_pattern: String
§complexity_score: i32
§best_practices: Vec<String>
§typescript_specific: bool
Trait Implementations§
Source§impl Clone for ModernJsFeatureInfo
impl Clone for ModernJsFeatureInfo
Source§fn clone(&self) -> ModernJsFeatureInfo
fn clone(&self) -> ModernJsFeatureInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ModernJsFeatureInfo
impl RefUnwindSafe for ModernJsFeatureInfo
impl Send for ModernJsFeatureInfo
impl Sync for ModernJsFeatureInfo
impl Unpin for ModernJsFeatureInfo
impl UnwindSafe for ModernJsFeatureInfo
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