pub struct RepositoryInfo {
pub name: String,
pub description: String,
pub stars: u32,
pub official: bool,
pub automated: bool,
}
Expand description
Information about a Docker Hub repository from search results
Fields§
§name: String
Repository name
description: String
Repository description
stars: u32
Number of stars
official: bool
Whether it’s an official image
automated: bool
Whether it’s an automated build
Trait Implementations§
Source§impl Clone for RepositoryInfo
impl Clone for RepositoryInfo
Source§fn clone(&self) -> RepositoryInfo
fn clone(&self) -> RepositoryInfo
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 RepositoryInfo
impl Debug for RepositoryInfo
Source§impl PartialEq for RepositoryInfo
impl PartialEq for RepositoryInfo
impl StructuralPartialEq for RepositoryInfo
Auto Trait Implementations§
impl Freeze for RepositoryInfo
impl RefUnwindSafe for RepositoryInfo
impl Send for RepositoryInfo
impl Sync for RepositoryInfo
impl Unpin for RepositoryInfo
impl UnwindSafe for RepositoryInfo
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