pub struct PodImage {
pub pod_name: String,
pub node_name: String,
pub namespace: String,
pub container_name: String,
pub image_name: String,
pub image_version: String,
pub registry: String,
pub digest: String,
}Expand description
Represents a container image running in a Kubernetes pod
Fields§
§pod_name: StringName of the pod containing the image
node_name: StringName of the node where the pod is running
namespace: StringKubernetes namespace of the pod
container_name: StringName of the container using this image
image_name: StringName of the container image
image_version: StringVersion/tag of the container image
registry: StringRegistry where the image is hosted
digest: StringImage digest (if available)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PodImage
impl RefUnwindSafe for PodImage
impl Send for PodImage
impl Sync for PodImage
impl Unpin for PodImage
impl UnwindSafe for PodImage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more