#[non_exhaustive]pub struct ImageFamilyView {
pub image: Option<Image>,
/* private fields */
}Available on crate feature
image-family-views only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.image: Option<Image>The latest image that is part of the specified image family in the requested location, and that is not deprecated.
Implementations§
Source§impl ImageFamilyView
impl ImageFamilyView
Trait Implementations§
Source§impl Clone for ImageFamilyView
impl Clone for ImageFamilyView
Source§fn clone(&self) -> ImageFamilyView
fn clone(&self) -> ImageFamilyView
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 ImageFamilyView
impl Debug for ImageFamilyView
Source§impl Default for ImageFamilyView
impl Default for ImageFamilyView
Source§fn default() -> ImageFamilyView
fn default() -> ImageFamilyView
Returns the “default value” for a type. Read more
Source§impl Message for ImageFamilyView
impl Message for ImageFamilyView
Source§impl PartialEq for ImageFamilyView
impl PartialEq for ImageFamilyView
impl StructuralPartialEq for ImageFamilyView
Auto Trait Implementations§
impl !Freeze for ImageFamilyView
impl RefUnwindSafe for ImageFamilyView
impl Send for ImageFamilyView
impl Sync for ImageFamilyView
impl Unpin for ImageFamilyView
impl UnwindSafe for ImageFamilyView
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