pub struct SoftwareInfo {
pub os: String,
pub kernel: String,
pub rustc: String,
pub cargo: String,
pub llvm: String,
}Expand description
Software environment
Fields§
§os: StringOperating system
kernel: StringKernel version
rustc: StringRust compiler version
cargo: StringCargo version
llvm: StringLLVM version
Trait Implementations§
Source§impl Clone for SoftwareInfo
impl Clone for SoftwareInfo
Source§fn clone(&self) -> SoftwareInfo
fn clone(&self) -> SoftwareInfo
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 Debug for SoftwareInfo
impl Debug for SoftwareInfo
Source§impl<'de> Deserialize<'de> for SoftwareInfo
impl<'de> Deserialize<'de> for SoftwareInfo
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 SoftwareInfo
impl RefUnwindSafe for SoftwareInfo
impl Send for SoftwareInfo
impl Sync for SoftwareInfo
impl Unpin for SoftwareInfo
impl UnsafeUnpin for SoftwareInfo
impl UnwindSafe for SoftwareInfo
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