pub struct AppliedPatch {
pub service: String,
pub patch_date: NaiveDate,
pub weekday: String,
pub applied_at: DateTime<Utc>,
pub etag: Option<String>,
pub record_count: Option<usize>,
}Expand description
Record of an applied daily patch.
Fields§
§service: StringRadio service code.
patch_date: NaiveDateDate of the patch (YYYY-MM-DD).
weekday: StringWeekday abbreviation (mon, tue, etc.).
applied_at: DateTime<Utc>When the patch was applied.
etag: Option<String>ETag of the downloaded file, if known.
record_count: Option<usize>Number of records in the patch.
Trait Implementations§
Source§impl Clone for AppliedPatch
impl Clone for AppliedPatch
Source§fn clone(&self) -> AppliedPatch
fn clone(&self) -> AppliedPatch
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 AppliedPatch
impl Debug for AppliedPatch
Source§impl<'de> Deserialize<'de> for AppliedPatch
impl<'de> Deserialize<'de> for AppliedPatch
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 AppliedPatch
impl RefUnwindSafe for AppliedPatch
impl Send for AppliedPatch
impl Sync for AppliedPatch
impl Unpin for AppliedPatch
impl UnsafeUnpin for AppliedPatch
impl UnwindSafe for AppliedPatch
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