pub struct ImageStreamSpec {
pub docker_image_repository: Option<String>,
pub lookup_policy: Option<ImageLookupPolicy>,
pub tags: Option<Vec<TagReference>>,
}
Expand description
ImageStreamSpec represents options for ImageStreams.
Fields§
§docker_image_repository: Option<String>
dockerImageRepository is optional, if specified this stream is backed by a container repository on this server Deprecated: This field is deprecated as of v3.7 and will be removed in a future release. Specify the source for the tags to be imported in each tag via the spec.tags.from reference instead.
lookup_policy: Option<ImageLookupPolicy>
lookupPolicy controls how other resources reference images within this namespace.
tags map arbitrary string values to specific image locators
Trait Implementations§
Source§impl Clone for ImageStreamSpec
impl Clone for ImageStreamSpec
Source§fn clone(&self) -> ImageStreamSpec
fn clone(&self) -> ImageStreamSpec
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 ImageStreamSpec
impl Debug for ImageStreamSpec
Source§impl Default for ImageStreamSpec
impl Default for ImageStreamSpec
Source§fn default() -> ImageStreamSpec
fn default() -> ImageStreamSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageStreamSpec
impl<'de> Deserialize<'de> for ImageStreamSpec
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 ImageStreamSpec
impl PartialEq for ImageStreamSpec
Source§impl Serialize for ImageStreamSpec
impl Serialize for ImageStreamSpec
impl StructuralPartialEq for ImageStreamSpec
Auto Trait Implementations§
impl Freeze for ImageStreamSpec
impl RefUnwindSafe for ImageStreamSpec
impl Send for ImageStreamSpec
impl Sync for ImageStreamSpec
impl Unpin for ImageStreamSpec
impl UnwindSafe for ImageStreamSpec
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