pub enum ExpiresAfter {
CreatedAt {
seconds: usize,
},
}
Expand description
The expiration policy for a file.
By default, files with purpose=batch
expire after 30 days and all other files
are persisted until they are manually deleted.
Variants§
CreatedAt
Anchor timestamp after which the expiration policy applies.
Supported anchors: created_at
.
Trait Implementations§
Source§impl Clone for ExpiresAfter
impl Clone for ExpiresAfter
Source§fn clone(&self) -> ExpiresAfter
fn clone(&self) -> ExpiresAfter
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 ExpiresAfter
impl Debug for ExpiresAfter
Auto Trait Implementations§
impl Freeze for ExpiresAfter
impl RefUnwindSafe for ExpiresAfter
impl Send for ExpiresAfter
impl Sync for ExpiresAfter
impl Unpin for ExpiresAfter
impl UnwindSafe for ExpiresAfter
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