[−][src]Struct openstack::image::Image
Structure representing a single image.
Methods
impl Image[src]
pub fn architecture(&self) -> &Option<String>[src]
Image architecture.
pub fn checksum(&self) -> &Option<String>[src]
Checksum of the image.
pub fn container_format(&self) -> Option<ImageContainerFormat>[src]
Container format.
pub fn created_at(&self) -> DateTime<FixedOffset>[src]
Creating date and time.
pub fn disk_format(&self) -> Option<ImageDiskFormat>[src]
Disk format.
pub fn id(&self) -> &String[src]
Unique ID.
pub fn minimum_required_disk(&self) -> u32[src]
Minimum required disk size in GiB.
Can be zero, if no requirements are known.
pub fn minimum_required_ram(&self) -> u32[src]
Minimum required disk size in GiB, if set.
Can be zero, if no requirements are known.
pub fn name(&self) -> &String[src]
Image name.
pub fn size(&self) -> Option<u64>[src]
Image size in bytes.
pub fn status(&self) -> ImageStatus[src]
Image status.
pub fn updated_at(&self) -> DateTime<FixedOffset>[src]
Last update date and time.
pub fn virtual_size(&self) -> Option<u64>[src]
Virtual size of the image.
pub fn visibility(&self) -> ImageVisibility[src]
Image visibility.
Trait Implementations
impl Refresh for Image[src]
impl Clone for Image[src]
fn clone(&self) -> Image[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl From<Image> for ImageRef[src]
impl Debug for Image[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.