pub struct RustcAbiJson {
pub version: String,
pub commit_hash: String,
pub commit_date: String,
pub build_date: Option<String>,
pub channel: String,
pub host: String,
pub short: String,
pub llvm_version: Option<String>,
}Fields§
§version: String§commit_hash: String§commit_date: String§build_date: Option<String>§channel: String§host: String§short: String§llvm_version: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RustcAbiJson
impl<'de> Deserialize<'de> for RustcAbiJson
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
Source§impl From<&RustcAbi> for RustcAbiJson
impl From<&RustcAbi> for RustcAbiJson
Source§impl From<&RustcAbiJson> for RustcAbi
impl From<&RustcAbiJson> for RustcAbi
Source§fn from(abi_json: &RustcAbiJson) -> Self
fn from(abi_json: &RustcAbiJson) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RustcAbiJson
impl RefUnwindSafe for RustcAbiJson
impl Send for RustcAbiJson
impl Sync for RustcAbiJson
impl Unpin for RustcAbiJson
impl UnwindSafe for RustcAbiJson
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