pub struct RegistrySearchResponse {
pub automated: Option<String>,
pub description: Option<String>,
pub index: Option<String>,
pub name: Option<String>,
pub official: Option<String>,
pub stars: Option<i64>,
pub tag: Option<String>,
}
Available on crate feature
v5
only.Fields§
§automated: Option<String>
Automated indicates if the image was created by an automated build.
description: Option<String>
Description of the image.
index: Option<String>
Index is the image index
name: Option<String>
Name is the canonical name of the image
official: Option<String>
Official indicates if it’s an official image.
stars: Option<i64>
Stars is the number of stars of the image.
tag: Option<String>
Tag is the image tag
Trait Implementations§
Source§impl Debug for RegistrySearchResponse
impl Debug for RegistrySearchResponse
Source§impl Default for RegistrySearchResponse
impl Default for RegistrySearchResponse
Source§fn default() -> RegistrySearchResponse
fn default() -> RegistrySearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegistrySearchResponse
impl<'de> Deserialize<'de> for RegistrySearchResponse
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
Auto Trait Implementations§
impl Freeze for RegistrySearchResponse
impl RefUnwindSafe for RegistrySearchResponse
impl Send for RegistrySearchResponse
impl Sync for RegistrySearchResponse
impl Unpin for RegistrySearchResponse
impl UnwindSafe for RegistrySearchResponse
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