Struct ManualCronRunResult
pub struct ManualCronRunResult {
pub job_id: String,
pub success: bool,
pub status: String,
pub output: String,
pub duration_ms: i64,
pub started_at: DateTime<Utc>,
pub finished_at: DateTime<Utc>,
}Fields§
§job_id: String§success: bool§status: String§output: String§duration_ms: i64§started_at: DateTime<Utc>§finished_at: DateTime<Utc>Auto Trait Implementations§
impl Freeze for ManualCronRunResult
impl RefUnwindSafe for ManualCronRunResult
impl Send for ManualCronRunResult
impl Sync for ManualCronRunResult
impl Unpin for ManualCronRunResult
impl UnsafeUnpin for ManualCronRunResult
impl UnwindSafe for ManualCronRunResult
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more