pub struct TypeScriptTargetConfig {
pub out: String,
pub module: String,
pub declaration: bool,
pub gitignore: bool,
pub tree_shaking: bool,
pub messages: Vec<String>,
pub framework: Option<String>,
}Fields§
§out: String§module: String§declaration: bool§gitignore: bool§tree_shaking: bool§messages: Vec<String>§framework: Option<String>Trait Implementations§
Source§impl Clone for TypeScriptTargetConfig
impl Clone for TypeScriptTargetConfig
Source§fn clone(&self) -> TypeScriptTargetConfig
fn clone(&self) -> TypeScriptTargetConfig
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 TypeScriptTargetConfig
impl Debug for TypeScriptTargetConfig
Source§impl PartialEq for TypeScriptTargetConfig
impl PartialEq for TypeScriptTargetConfig
Source§fn eq(&self, other: &TypeScriptTargetConfig) -> bool
fn eq(&self, other: &TypeScriptTargetConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TypeScriptTargetConfig
impl StructuralPartialEq for TypeScriptTargetConfig
Auto Trait Implementations§
impl Freeze for TypeScriptTargetConfig
impl RefUnwindSafe for TypeScriptTargetConfig
impl Send for TypeScriptTargetConfig
impl Sync for TypeScriptTargetConfig
impl Unpin for TypeScriptTargetConfig
impl UnsafeUnpin for TypeScriptTargetConfig
impl UnwindSafe for TypeScriptTargetConfig
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