pub struct GetPackagesResult {
pub packages: HashMap<String, PackageInfo>,
pub errors: Vec<String>,
}Expand description
Result of fetching multiple packages
Fields§
§packages: HashMap<String, PackageInfo>§errors: Vec<String>Trait Implementations§
Source§impl Clone for GetPackagesResult
impl Clone for GetPackagesResult
Source§fn clone(&self) -> GetPackagesResult
fn clone(&self) -> GetPackagesResult
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 moreAuto Trait Implementations§
impl Freeze for GetPackagesResult
impl RefUnwindSafe for GetPackagesResult
impl Send for GetPackagesResult
impl Sync for GetPackagesResult
impl Unpin for GetPackagesResult
impl UnwindSafe for GetPackagesResult
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