pub struct OwnedBuildInfo {
pub branch: String,
pub commit: String,
pub commit_short: String,
pub clean: bool,
pub source_time: String,
pub build_time: String,
pub rustc: String,
pub target: String,
pub version: String,
}
Fields§
§branch: String
§commit: String
§commit_short: String
§clean: bool
§source_time: String
§build_time: String
§rustc: String
§target: String
§version: String
Trait Implementations§
Source§impl Clone for OwnedBuildInfo
impl Clone for OwnedBuildInfo
Source§fn clone(&self) -> OwnedBuildInfo
fn clone(&self) -> OwnedBuildInfo
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 Debug for OwnedBuildInfo
impl Debug for OwnedBuildInfo
Source§impl<'de> Deserialize<'de> for OwnedBuildInfo
impl<'de> Deserialize<'de> for OwnedBuildInfo
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 Display for OwnedBuildInfo
impl Display for OwnedBuildInfo
Source§impl From<BuildInfo> for OwnedBuildInfo
impl From<BuildInfo> for OwnedBuildInfo
Source§impl PartialEq for OwnedBuildInfo
impl PartialEq for OwnedBuildInfo
Source§impl Serialize for OwnedBuildInfo
impl Serialize for OwnedBuildInfo
impl StructuralPartialEq for OwnedBuildInfo
Auto Trait Implementations§
impl Freeze for OwnedBuildInfo
impl RefUnwindSafe for OwnedBuildInfo
impl Send for OwnedBuildInfo
impl Sync for OwnedBuildInfo
impl Unpin for OwnedBuildInfo
impl UnwindSafe for OwnedBuildInfo
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