Struct podman_api::models::LibpodImageSearchResponse
source · [−]pub struct LibpodImageSearchResponse {
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>,
}
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 (e.g., "docker.io" or "quay.io")
name: Option<String>
Name is the canonical name of the image (e.g., "docker.io/library/alpine").
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
sourceimpl Clone for LibpodImageSearchResponse
impl Clone for LibpodImageSearchResponse
sourcefn clone(&self) -> LibpodImageSearchResponse
fn clone(&self) -> LibpodImageSearchResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LibpodImageSearchResponse
impl Debug for LibpodImageSearchResponse
sourceimpl<'de> Deserialize<'de> for LibpodImageSearchResponse
impl<'de> Deserialize<'de> for LibpodImageSearchResponse
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<LibpodImageSearchResponse, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<LibpodImageSearchResponse, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<LibpodImageSearchResponse> for LibpodImageSearchResponse
impl PartialEq<LibpodImageSearchResponse> for LibpodImageSearchResponse
sourcefn eq(&self, other: &LibpodImageSearchResponse) -> bool
fn eq(&self, other: &LibpodImageSearchResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LibpodImageSearchResponse) -> bool
fn ne(&self, other: &LibpodImageSearchResponse) -> bool
This method tests for !=
.
sourceimpl Serialize for LibpodImageSearchResponse
impl Serialize for LibpodImageSearchResponse
sourcefn 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 LibpodImageSearchResponse
Auto Trait Implementations
impl RefUnwindSafe for LibpodImageSearchResponse
impl Send for LibpodImageSearchResponse
impl Sync for LibpodImageSearchResponse
impl Unpin for LibpodImageSearchResponse
impl UnwindSafe for LibpodImageSearchResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more