pub enum RecencySpec {
Relative(u64),
LastRun,
}Expand description
A recency filter specification.
Variants§
Relative(u64)
Keep clips created within the last N seconds before now.
LastRun
Keep clips created after the last-run timestamp.
Implementations§
Auto Trait Implementations§
impl Freeze for RecencySpec
impl RefUnwindSafe for RecencySpec
impl Send for RecencySpec
impl Sync for RecencySpec
impl Unpin for RecencySpec
impl UnsafeUnpin for RecencySpec
impl UnwindSafe for RecencySpec
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