pub struct WebTargetConfig {
pub enabled: bool,
pub variant: String,
pub html_template: Option<PathBuf>,
pub html_assets: Vec<PathBuf>,
pub runtime_path: Option<PathBuf>,
pub memory_bytes: u64,
pub arguments: Vec<String>,
}Fields§
§enabled: bool§variant: String§html_template: Option<PathBuf>§html_assets: Vec<PathBuf>§runtime_path: Option<PathBuf>§memory_bytes: u64§arguments: Vec<String>Trait Implementations§
Source§impl Clone for WebTargetConfig
impl Clone for WebTargetConfig
Source§fn clone(&self) -> WebTargetConfig
fn clone(&self) -> WebTargetConfig
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 WebTargetConfig
impl Debug for WebTargetConfig
impl Eq for WebTargetConfig
Source§impl PartialEq for WebTargetConfig
impl PartialEq for WebTargetConfig
Source§fn eq(&self, other: &WebTargetConfig) -> bool
fn eq(&self, other: &WebTargetConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebTargetConfig
Auto Trait Implementations§
impl Freeze for WebTargetConfig
impl RefUnwindSafe for WebTargetConfig
impl Send for WebTargetConfig
impl Sync for WebTargetConfig
impl Unpin for WebTargetConfig
impl UnsafeUnpin for WebTargetConfig
impl UnwindSafe for WebTargetConfig
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