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>,
}
Expand description
Registry Search
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 Clone for RegistrySearchResponse
impl Clone for RegistrySearchResponse
Source§fn clone(&self) -> RegistrySearchResponse
fn clone(&self) -> RegistrySearchResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RegistrySearchResponse
impl Debug for RegistrySearchResponse
Source§impl<'de> Deserialize<'de> for RegistrySearchResponse
impl<'de> Deserialize<'de> for RegistrySearchResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RegistrySearchResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RegistrySearchResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegistrySearchResponse
impl PartialEq for RegistrySearchResponse
Source§fn eq(&self, other: &RegistrySearchResponse) -> bool
fn eq(&self, other: &RegistrySearchResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for RegistrySearchResponse
impl Serialize for RegistrySearchResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RegistrySearchResponse
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