pub struct Job {Show 13 fields
pub id: u64,
pub created_at: DateTime<FixedOffset>,
pub updated_at: DateTime<FixedOffset>,
pub auth_id: String,
pub hash: String,
pub job_type: String,
pub integration: String,
pub file_id: Option<u64>,
pub zip: bool,
pub progress: f64,
pub detail: String,
pub download_url: Option<String>,
pub status: String,
}Fields§
§id: u64§created_at: DateTime<FixedOffset>§updated_at: DateTime<FixedOffset>§auth_id: String§hash: String§job_type: String§integration: String§file_id: Option<u64>§zip: bool§progress: f64§detail: String§download_url: Option<String>§status: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Job
impl<'de> Deserialize<'de> for Job
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
Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnsafeUnpin 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