pub struct Build {
pub version: Version,
pub build_type: Option<BuildType>,
pub time: Option<String>,
pub builder: Option<String>,
}Expand description
Information about the build.
Fields§
§version: Version§build_type: Option<BuildType>§time: Option<String>A string containing the date and time when an application was built. Note that this is not an xsd:dateTime type because this string is generated by the compiler and cannot be readily converted to the xsd:dateTime format.
builder: Option<String>The login name of the engineer who created this build.
Trait Implementations§
impl StructuralPartialEq for Build
Auto Trait Implementations§
impl Freeze for Build
impl RefUnwindSafe for Build
impl Send for Build
impl Sync for Build
impl Unpin for Build
impl UnwindSafe for Build
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