pub enum SinceFilter {
Version(u32),
CreatedAt(String),
}Expand description
Filter applied to a version listing.
Variants§
Version(u32)
Keep versions whose number >= n.
CreatedAt(String)
Keep versions whose created_at >= iso (lexicographic compare on
ISO 8601 strings — ordering is correct as long as the timestamps
are fully qualified with offsets, which Confluence’s API guarantees).
Implementations§
Trait Implementations§
Source§impl Clone for SinceFilter
impl Clone for SinceFilter
Source§fn clone(&self) -> SinceFilter
fn clone(&self) -> SinceFilter
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 SinceFilter
impl Debug for SinceFilter
impl Eq for SinceFilter
Source§impl PartialEq for SinceFilter
impl PartialEq for SinceFilter
Source§fn eq(&self, other: &SinceFilter) -> bool
fn eq(&self, other: &SinceFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SinceFilter
Auto Trait Implementations§
impl Freeze for SinceFilter
impl RefUnwindSafe for SinceFilter
impl Send for SinceFilter
impl Sync for SinceFilter
impl Unpin for SinceFilter
impl UnsafeUnpin for SinceFilter
impl UnwindSafe for SinceFilter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.