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<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<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 duplicate 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 Freeze for RustcCompilerMessage
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> ActionTrait for T
impl<T> ActionTrait for T
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