pub struct CachedImages {
pub os_type: String,
pub image: String,
}Expand description
The cached image and OS type.
Fields§
§os_type: StringThe OS type of the cached image.
image: StringThe cached image name.
Implementations§
Trait Implementations§
Source§impl Clone for CachedImages
impl Clone for CachedImages
Source§fn clone(&self) -> CachedImages
fn clone(&self) -> CachedImages
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 CachedImages
impl Debug for CachedImages
Source§impl<'de> Deserialize<'de> for CachedImages
impl<'de> Deserialize<'de> for CachedImages
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 CachedImages
impl PartialEq for CachedImages
Source§impl Serialize for CachedImages
impl Serialize for CachedImages
impl StructuralPartialEq for CachedImages
Auto Trait Implementations§
impl Freeze for CachedImages
impl RefUnwindSafe for CachedImages
impl Send for CachedImages
impl Sync for CachedImages
impl Unpin for CachedImages
impl UnwindSafe for CachedImages
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