pub struct BundleCatalogView {
pub requested_ref: String,
pub resolved_ref: String,
pub digest: String,
pub source: String,
pub item_count: usize,
pub item_ids: Vec<String>,
pub cache_path: Option<String>,
}Fields§
§requested_ref: String§resolved_ref: String§digest: String§source: String§item_count: usize§item_ids: Vec<String>§cache_path: Option<String>Trait Implementations§
Source§impl Clone for BundleCatalogView
impl Clone for BundleCatalogView
Source§fn clone(&self) -> BundleCatalogView
fn clone(&self) -> BundleCatalogView
Returns a duplicate 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 BundleCatalogView
impl Debug for BundleCatalogView
Source§impl<'de> Deserialize<'de> for BundleCatalogView
impl<'de> Deserialize<'de> for BundleCatalogView
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 BundleCatalogView
impl PartialEq for BundleCatalogView
Source§impl Serialize for BundleCatalogView
impl Serialize for BundleCatalogView
impl Eq for BundleCatalogView
impl StructuralPartialEq for BundleCatalogView
Auto Trait Implementations§
impl Freeze for BundleCatalogView
impl RefUnwindSafe for BundleCatalogView
impl Send for BundleCatalogView
impl Sync for BundleCatalogView
impl Unpin for BundleCatalogView
impl UnsafeUnpin for BundleCatalogView
impl UnwindSafe for BundleCatalogView
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