pub struct Job {Show 14 fields
pub job_id: u64,
pub job_type: String,
pub query: JobQuery,
pub status: String,
pub url: String,
pub created_at: TimeStamp,
pub start_at: Option<TimeStamp>,
pub end_at: Option<TimeStamp>,
pub cpu_time: Option<String>,
pub result_size: Option<u64>,
pub hive_result_schema: Option<Vec<Vec<String>>>,
pub priority: u64,
pub retry_limit: u64,
pub duration: Option<u64>,
}
Fields§
§job_id: u64
§job_type: String
§query: JobQuery
§status: String
§url: String
§created_at: TimeStamp
§start_at: Option<TimeStamp>
§end_at: Option<TimeStamp>
§cpu_time: Option<String>
§result_size: Option<u64>
§hive_result_schema: Option<Vec<Vec<String>>>
§priority: u64
§retry_limit: u64
§duration: Option<u64>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnwindSafe for Job
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> 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