pub struct JobKindOverview {Show 13 fields
pub kind: String,
pub display_name: Option<String>,
pub description: Option<String>,
pub owner: Option<String>,
pub docs_url: Option<String>,
pub tags: Vec<String>,
pub extra: Value,
pub descriptor_last_seen_at: Option<DateTime<Utc>>,
pub descriptor_stale: bool,
pub descriptor_mismatch: bool,
pub job_count: i64,
pub queue_count: i64,
pub completed_last_hour: i64,
}Fields§
§kind: String§display_name: Option<String>§description: Option<String>§owner: Option<String>§docs_url: Option<String>§extra: Value§descriptor_last_seen_at: Option<DateTime<Utc>>§descriptor_stale: bool§descriptor_mismatch: bool§job_count: i64§queue_count: i64§completed_last_hour: i64Trait Implementations§
Source§impl Clone for JobKindOverview
impl Clone for JobKindOverview
Source§fn clone(&self) -> JobKindOverview
fn clone(&self) -> JobKindOverview
Returns a duplicate 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 JobKindOverview
impl Debug for JobKindOverview
Source§impl<'a, R: Row> FromRow<'a, R> for JobKindOverviewwhere
&'a str: ColumnIndex<R>,
String: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Vec<String>: Decode<'a, R::Database> + Type<R::Database>,
Value: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
bool: Decode<'a, R::Database> + Type<R::Database>,
i64: Decode<'a, R::Database> + Type<R::Database>,
impl<'a, R: Row> FromRow<'a, R> for JobKindOverviewwhere
&'a str: ColumnIndex<R>,
String: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Vec<String>: Decode<'a, R::Database> + Type<R::Database>,
Value: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
bool: Decode<'a, R::Database> + Type<R::Database>,
i64: Decode<'a, R::Database> + Type<R::Database>,
Auto Trait Implementations§
impl Freeze for JobKindOverview
impl RefUnwindSafe for JobKindOverview
impl Send for JobKindOverview
impl Sync for JobKindOverview
impl Unpin for JobKindOverview
impl UnsafeUnpin for JobKindOverview
impl UnwindSafe for JobKindOverview
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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