pub struct ImageStreamStatus {
pub docker_image_repository: String,
pub public_docker_image_repository: Option<String>,
pub tags: Option<Vec<NamedTagEventList>>,
}
Expand description
ImageStreamStatus contains information about the state of this image stream.
Fields§
§docker_image_repository: String
DockerImageRepository represents the effective location this stream may be accessed at. May be empty until the server determines where the repository is located
public_docker_image_repository: Option<String>
PublicDockerImageRepository represents the public location from where the image can be pulled outside the cluster. This field may be empty if the administrator has not exposed the integrated registry externally.
Tags are a historical record of images associated with each tag. The first entry in the TagEvent array is the currently tagged image.
Trait Implementations§
Source§impl Clone for ImageStreamStatus
impl Clone for ImageStreamStatus
Source§fn clone(&self) -> ImageStreamStatus
fn clone(&self) -> ImageStreamStatus
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 ImageStreamStatus
impl Debug for ImageStreamStatus
Source§impl Default for ImageStreamStatus
impl Default for ImageStreamStatus
Source§fn default() -> ImageStreamStatus
fn default() -> ImageStreamStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageStreamStatus
impl<'de> Deserialize<'de> for ImageStreamStatus
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
Source§impl PartialEq for ImageStreamStatus
impl PartialEq for ImageStreamStatus
Source§impl Serialize for ImageStreamStatus
impl Serialize for ImageStreamStatus
impl StructuralPartialEq for ImageStreamStatus
Auto Trait Implementations§
impl Freeze for ImageStreamStatus
impl RefUnwindSafe for ImageStreamStatus
impl Send for ImageStreamStatus
impl Sync for ImageStreamStatus
impl Unpin for ImageStreamStatus
impl UnwindSafe for ImageStreamStatus
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