pub struct Invalidation {
pub create_time: String,
pub id: String,
pub invalidation_batch: InvalidationBatch,
pub status: String,
}Expand description
An invalidation.
Fields§
§create_time: StringThe date and time the invalidation request was first made.
id: StringThe identifier for the invalidation request. For example: IDFDVBD632BHDS5.
invalidation_batch: InvalidationBatchThe current invalidation information for the batch request.
status: StringThe status of the invalidation request. When the invalidation batch is finished, the status is Completed.
Trait Implementations§
Source§impl Clone for Invalidation
impl Clone for Invalidation
Source§fn clone(&self) -> Invalidation
fn clone(&self) -> Invalidation
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 Invalidation
impl Debug for Invalidation
Source§impl Default for Invalidation
impl Default for Invalidation
Source§fn default() -> Invalidation
fn default() -> Invalidation
Returns the “default value” for a type. Read more
Source§impl PartialEq for Invalidation
impl PartialEq for Invalidation
impl StructuralPartialEq for Invalidation
Auto Trait Implementations§
impl Freeze for Invalidation
impl RefUnwindSafe for Invalidation
impl Send for Invalidation
impl Sync for Invalidation
impl Unpin for Invalidation
impl UnwindSafe for Invalidation
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