[][src]Struct openshift_openapi::api::image::v1::ImageStreamLayers

pub struct ImageStreamLayers {
    pub blobs: BTreeMap<String, ImageLayerData>,
    pub images: BTreeMap<String, ImageBlobReferences>,
    pub metadata: Option<ObjectMeta>,
}

ImageStreamLayers describes information about the layers referenced by images in this image stream.

Fields

blobs: BTreeMap<String, ImageLayerData>

blobs is a map of blob name to metadata about the blob.

images: BTreeMap<String, ImageBlobReferences>

images is a map between an image name and the names of the blobs and config that comprise the image.

metadata: Option<ObjectMeta>

Standard object's metadata.

Implementations

impl ImageStreamLayers[src]

pub fn read_namespaced_image_stream_layers(
    name: &str,
    namespace: &str,
    optional: ReadNamespacedImageStreamLayersOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadNamespacedImageStreamLayersResponse>), RequestError>
[src]

read layers of the specified ImageStream

Use the returned k8s_openapi::ResponseBody<ReadNamespacedImageStreamLayersResponse> constructor, or ReadNamespacedImageStreamLayersResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the ImageStreamLayers

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

Trait Implementations

impl Clone for ImageStreamLayers[src]

impl Debug for ImageStreamLayers[src]

impl Default for ImageStreamLayers[src]

impl<'de> Deserialize<'de> for ImageStreamLayers[src]

impl Metadata for ImageStreamLayers[src]

type Ty = ObjectMeta

The type of the metadata object.

impl PartialEq<ImageStreamLayers> for ImageStreamLayers[src]

impl Resource for ImageStreamLayers[src]

impl Serialize for ImageStreamLayers[src]

impl StructuralPartialEq for ImageStreamLayers[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.