Enum delta_sharing_server::protocol::table::VersionRange
source · pub enum VersionRange {
Version {
start: u64,
end: u64,
},
Timestamp {
start: DateTime<Utc>,
end: DateTime<Utc>,
},
}Expand description
Requested range of table version.
Variants§
Version
Fields
Range of table versions represented by start and end version number.
Timestamp
Fields
Range of table versions represented by start and end timestamp.
Trait Implementations§
source§impl Clone for VersionRange
impl Clone for VersionRange
source§fn clone(&self) -> VersionRange
fn clone(&self) -> VersionRange
Returns a copy 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 VersionRange
impl Debug for VersionRange
impl Copy for VersionRange
Auto Trait Implementations§
impl RefUnwindSafe for VersionRange
impl Send for VersionRange
impl Sync for VersionRange
impl Unpin for VersionRange
impl UnwindSafe for VersionRange
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