pub struct MorphConfig {Show 13 fields
pub name: String,
pub entry: String,
pub output: String,
pub window: WindowConfig,
pub renderer: String,
pub type_mode: String,
pub dependencies: HashMap<String, String>,
pub cpp_sources: Vec<String>,
pub native: NativeConfig,
pub node_bridge: bool,
pub build: BuildConfig,
pub lint: LintConfig,
pub runtime: RuntimeConfig,
}Fields§
§name: String§entry: String§output: String§window: WindowConfig§renderer: String§type_mode: String§dependencies: HashMap<String, String>§cpp_sources: Vec<String>§native: NativeConfig§node_bridge: bool§build: BuildConfig§lint: LintConfig§runtime: RuntimeConfigImplementations§
Trait Implementations§
Source§impl Clone for MorphConfig
impl Clone for MorphConfig
Source§fn clone(&self) -> MorphConfig
fn clone(&self) -> MorphConfig
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 MorphConfig
impl Debug for MorphConfig
Source§impl Default for MorphConfig
impl Default for MorphConfig
Source§impl<'de> Deserialize<'de> for MorphConfig
impl<'de> Deserialize<'de> for MorphConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MorphConfig
impl RefUnwindSafe for MorphConfig
impl Send for MorphConfig
impl Sync for MorphConfig
impl Unpin for MorphConfig
impl UnsafeUnpin for MorphConfig
impl UnwindSafe for MorphConfig
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