pub struct Version {
pub version: u64,
pub timestamp: DateTime<Utc>,
pub metadata: BTreeMap<String, String>,
}Expand description
Dataset Version
Fields§
§version: u64version number
timestamp: DateTime<Utc>Timestamp of dataset creation in UTC.
metadata: BTreeMap<String, String>Key-value pairs of metadata.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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