pub struct BuildInformation {
pub commit_sha: String,
pub commit_timestamp: String,
pub semver: String,
pub origin_url: String,
pub timestamp: String,
}Expand description
Build information
Fields§
§commit_sha: StringCommit hash
commit_timestamp: StringCommit timestamp
semver: StringGit semver
origin_url: StringGit origin URL
timestamp: StringBuild timestamp
Trait Implementations§
Source§impl Clone for BuildInformation
impl Clone for BuildInformation
Source§fn clone(&self) -> BuildInformation
fn clone(&self) -> BuildInformation
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 BuildInformation
impl Debug for BuildInformation
Source§impl<'de> Deserialize<'de> for BuildInformation
impl<'de> Deserialize<'de> for BuildInformation
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 BuildInformation
impl RefUnwindSafe for BuildInformation
impl Send for BuildInformation
impl Sync for BuildInformation
impl Unpin for BuildInformation
impl UnwindSafe for BuildInformation
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