pub struct RustcCompilerMessage {Show 17 fields
pub reason: String,
pub signal: Option<u64>,
pub success: Option<bool>,
pub package_id: Option<String>,
pub manifest_path: Option<String>,
pub linked_libs: Option<Vec<String>>,
pub linked_paths: Option<Vec<String>>,
pub cfgs: Option<Vec<String>>,
pub env: Option<Vec<String>>,
pub target: Option<RustcTarget>,
pub message: Option<RustcMessage>,
pub profile: Option<RustcProfile>,
pub out_dir: Option<String>,
pub features: Option<Vec<String>>,
pub filenames: Option<Vec<String>>,
pub executable: Option<String>,
pub fresh: Option<bool>,
}Fields§
§reason: String§signal: Option<u64>§success: Option<bool>§package_id: Option<String>§manifest_path: Option<String>§linked_libs: Option<Vec<String>>§linked_paths: Option<Vec<String>>§cfgs: Option<Vec<String>>§env: Option<Vec<String>>§target: Option<RustcTarget>§message: Option<RustcMessage>§profile: Option<RustcProfile>§out_dir: Option<String>§features: Option<Vec<String>>§filenames: Option<Vec<String>>§executable: Option<String>§fresh: Option<bool>Trait Implementations§
source§impl Clone for RustcCompilerMessage
impl Clone for RustcCompilerMessage
source§fn clone(&self) -> RustcCompilerMessage
fn clone(&self) -> RustcCompilerMessage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl DeJson for RustcCompilerMessage
impl DeJson for RustcCompilerMessage
source§impl Debug for RustcCompilerMessage
impl Debug for RustcCompilerMessage
source§impl Default for RustcCompilerMessage
impl Default for RustcCompilerMessage
source§fn default() -> RustcCompilerMessage
fn default() -> RustcCompilerMessage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for RustcCompilerMessage
impl Send for RustcCompilerMessage
impl Sync for RustcCompilerMessage
impl Unpin for RustcCompilerMessage
impl UnwindSafe for RustcCompilerMessage
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