pub struct DatasetListing {
pub entry: DatasetRegistryEntry,
pub cached: bool,
pub cache_path: Option<PathBuf>,
}Expand description
A registry entry annotated with its current managed-cache status.
Fields§
§entry: DatasetRegistryEntry§cached: bool§cache_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for DatasetListing
impl Clone for DatasetListing
Source§fn clone(&self) -> DatasetListing
fn clone(&self) -> DatasetListing
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 DatasetListing
impl Debug for DatasetListing
Source§impl PartialEq for DatasetListing
impl PartialEq for DatasetListing
Source§fn eq(&self, other: &DatasetListing) -> bool
fn eq(&self, other: &DatasetListing) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DatasetListing
impl StructuralPartialEq for DatasetListing
Auto Trait Implementations§
impl Freeze for DatasetListing
impl RefUnwindSafe for DatasetListing
impl Send for DatasetListing
impl Sync for DatasetListing
impl Unpin for DatasetListing
impl UnsafeUnpin for DatasetListing
impl UnwindSafe for DatasetListing
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