pub struct BuildResult {
pub uid: ProwID,
pub path: String,
pub result: String,
pub started: DateTime<Utc>,
pub duration: usize,
}Expand description
A build result.
Fields§
§uid: ProwIDThe build id.
path: StringThe spyglass path.
result: StringThe build result.
started: DateTime<Utc>The build started date.
duration: usizeThe build duration.
Trait Implementations§
Source§impl Clone for BuildResult
impl Clone for BuildResult
Source§fn clone(&self) -> BuildResult
fn clone(&self) -> BuildResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BuildResult
impl Debug for BuildResult
Source§impl<'de> Deserialize<'de> for BuildResult
impl<'de> Deserialize<'de> for BuildResult
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 PartialEq for BuildResult
impl PartialEq for BuildResult
Source§fn eq(&self, other: &BuildResult) -> bool
fn eq(&self, other: &BuildResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BuildResult
impl Serialize for BuildResult
impl StructuralPartialEq for BuildResult
Auto Trait Implementations§
impl Freeze for BuildResult
impl RefUnwindSafe for BuildResult
impl Send for BuildResult
impl Sync for BuildResult
impl Unpin for BuildResult
impl UnsafeUnpin for BuildResult
impl UnwindSafe for BuildResult
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