pub struct AppliedJob {
pub name: String,
pub id: Option<String>,
pub detail: String,
}Expand description
A job named in an apply report.
Fields§
§name: StringThe declared or existing name (the id, for a job with no name).
id: Option<String>The harness’s id, when a job exists.
detail: StringWhat was (or would be) done, or why not.
Trait Implementations§
Source§impl Clone for AppliedJob
impl Clone for AppliedJob
Source§fn clone(&self) -> AppliedJob
fn clone(&self) -> AppliedJob
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 AppliedJob
impl Debug for AppliedJob
Source§impl<'de> Deserialize<'de> for AppliedJob
impl<'de> Deserialize<'de> for AppliedJob
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppliedJob, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppliedJob, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AppliedJob
impl PartialEq for AppliedJob
Source§impl Serialize for AppliedJob
impl Serialize for AppliedJob
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AppliedJob
Auto Trait Implementations§
impl Freeze for AppliedJob
impl RefUnwindSafe for AppliedJob
impl Send for AppliedJob
impl Sync for AppliedJob
impl Unpin for AppliedJob
impl UnsafeUnpin for AppliedJob
impl UnwindSafe for AppliedJob
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