pub struct DatasetArchive {
pub url: String,
pub sha256: String,
pub size_bytes: u64,
}Expand description
Immutable compressed bundle information from a registry entry.
Fields§
§url: String§sha256: String§size_bytes: u64Trait Implementations§
Source§impl Clone for DatasetArchive
impl Clone for DatasetArchive
Source§fn clone(&self) -> DatasetArchive
fn clone(&self) -> DatasetArchive
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 DatasetArchive
impl Debug for DatasetArchive
Source§impl<'de> Deserialize<'de> for DatasetArchive
impl<'de> Deserialize<'de> for DatasetArchive
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatasetArchive
impl PartialEq for DatasetArchive
Source§fn eq(&self, other: &DatasetArchive) -> bool
fn eq(&self, other: &DatasetArchive) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DatasetArchive
impl Serialize for DatasetArchive
impl Eq for DatasetArchive
impl StructuralPartialEq for DatasetArchive
Auto Trait Implementations§
impl Freeze for DatasetArchive
impl RefUnwindSafe for DatasetArchive
impl Send for DatasetArchive
impl Sync for DatasetArchive
impl Unpin for DatasetArchive
impl UnsafeUnpin for DatasetArchive
impl UnwindSafe for DatasetArchive
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