pub struct ScreeningOperationExecution {
pub output: Option<ScreeningOperationExecutionOutput>,
pub started_at: f64,
pub finished_at: Option<f64>,
pub failure: Option<ScreeningOperationFailure>,
}
Fields§
§output: Option<ScreeningOperationExecutionOutput>
§started_at: f64
§finished_at: Option<f64>
§failure: Option<ScreeningOperationFailure>
Implementations§
Source§impl ScreeningOperationExecution
impl ScreeningOperationExecution
pub fn new(started_at: f64) -> ScreeningOperationExecution
Trait Implementations§
Source§impl Clone for ScreeningOperationExecution
impl Clone for ScreeningOperationExecution
Source§fn clone(&self) -> ScreeningOperationExecution
fn clone(&self) -> ScreeningOperationExecution
Returns a copy of the value. Read more
1.0.0 · 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 ScreeningOperationExecution
impl Debug for ScreeningOperationExecution
Source§impl Default for ScreeningOperationExecution
impl Default for ScreeningOperationExecution
Source§fn default() -> ScreeningOperationExecution
fn default() -> ScreeningOperationExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScreeningOperationExecution
impl<'de> Deserialize<'de> for ScreeningOperationExecution
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
impl StructuralPartialEq for ScreeningOperationExecution
Auto Trait Implementations§
impl Freeze for ScreeningOperationExecution
impl RefUnwindSafe for ScreeningOperationExecution
impl Send for ScreeningOperationExecution
impl Sync for ScreeningOperationExecution
impl Unpin for ScreeningOperationExecution
impl UnwindSafe for ScreeningOperationExecution
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