pub struct OutputExpiresAfter {
pub anchor: String,
pub seconds: i64,
}Expand description
The expiration policy for the output and/or error file that are generated for a batch.
Fields§
§anchor: StringAnchor timestamp after which the expiration policy applies.
seconds: i64The number of seconds after the anchor time that the file will expire.
Trait Implementations§
Source§impl Clone for OutputExpiresAfter
impl Clone for OutputExpiresAfter
Source§fn clone(&self) -> OutputExpiresAfter
fn clone(&self) -> OutputExpiresAfter
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 OutputExpiresAfter
impl Debug for OutputExpiresAfter
Source§impl<'de> Deserialize<'de> for OutputExpiresAfter
impl<'de> Deserialize<'de> for OutputExpiresAfter
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 OutputExpiresAfter
impl RefUnwindSafe for OutputExpiresAfter
impl Send for OutputExpiresAfter
impl Sync for OutputExpiresAfter
impl Unpin for OutputExpiresAfter
impl UnsafeUnpin for OutputExpiresAfter
impl UnwindSafe for OutputExpiresAfter
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