pub struct Step {
pub name: String,
pub status: Status,
/* private fields */
}Expand description
Step element for a CTRF report. Corresponds to the spec’s “Step” object.
Fields§
§name: StringRequired
status: StatusRequired
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Step
impl<'de> Deserialize<'de> for Step
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 Extra for Step
impl Extra for Step
Source§fn insert_extra(&mut self, key: String, value: Value) -> Option<Value>
fn insert_extra(&mut self, key: String, value: Value) -> Option<Value>
Inserts an element into the Extra map. Returns the value that it replaced, if one was present, or None if not.
impl StructuralPartialEq for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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