pub struct QueuedJob {Show 13 fields
pub id: i32,
pub name: String,
pub version: String,
pub distribution: String,
pub release: Option<String>,
pub component: Option<String>,
pub architecture: String,
pub backend: String,
pub url: String,
pub next_retry: Option<NaiveDateTime>,
pub priority: Priority,
pub queued_at: NaiveDateTime,
pub started_at: Option<NaiveDateTime>,
}Fields§
§id: i32§name: String§version: String§distribution: String§release: Option<String>§component: Option<String>§architecture: String§backend: String§url: String§next_retry: Option<NaiveDateTime>§priority: Priority§queued_at: NaiveDateTime§started_at: Option<NaiveDateTime>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QueuedJob
impl<'de> Deserialize<'de> for QueuedJob
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 Eq for QueuedJob
impl StructuralPartialEq for QueuedJob
Auto Trait Implementations§
impl Freeze for QueuedJob
impl RefUnwindSafe for QueuedJob
impl Send for QueuedJob
impl Sync for QueuedJob
impl Unpin for QueuedJob
impl UnsafeUnpin for QueuedJob
impl UnwindSafe for QueuedJob
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