pub struct StoredInvalidation {
pub id: String,
pub distribution_id: String,
pub status: String,
pub create_time: DateTime<Utc>,
pub batch: InvalidationBatch,
}Fields§
§id: String§distribution_id: String§status: String§create_time: DateTime<Utc>§batch: InvalidationBatchTrait Implementations§
Source§impl Clone for StoredInvalidation
impl Clone for StoredInvalidation
Source§fn clone(&self) -> StoredInvalidation
fn clone(&self) -> StoredInvalidation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredInvalidation
impl Debug for StoredInvalidation
Source§impl<'de> Deserialize<'de> for StoredInvalidation
impl<'de> Deserialize<'de> for StoredInvalidation
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 StoredInvalidation
impl RefUnwindSafe for StoredInvalidation
impl Send for StoredInvalidation
impl Sync for StoredInvalidation
impl Unpin for StoredInvalidation
impl UnsafeUnpin for StoredInvalidation
impl UnwindSafe for StoredInvalidation
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