pub struct Software {
pub name: String,
pub version: String,
pub compile_time: String,
}Expand description
Version information about the used Software
Fields§
§name: StringName of software
version: StringVersion of software
compile_time: StringCompilation time
Implementations§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Software
impl<'arbitrary> Arbitrary<'arbitrary> for Software
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the entirety of the given
unstructured data. Read moresource§impl<'de> Deserialize<'de> for Software
impl<'de> Deserialize<'de> for Software
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 Ord for Software
impl Ord for Software
source§impl PartialEq for Software
impl PartialEq for Software
source§impl PartialOrd for Software
impl PartialOrd for Software
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for Software
impl StructuralEq for Software
impl StructuralPartialEq for Software
Auto Trait Implementations§
impl RefUnwindSafe for Software
impl Send for Software
impl Sync for Software
impl Unpin for Software
impl UnwindSafe for Software
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