pub struct SoftwareStoreItem {
pub software: SoftwareInfo,
pub latest_version: Option<SoftwareVersion>,
}Fields§
§software: SoftwareInfo§latest_version: Option<SoftwareVersion>Trait Implementations§
Source§impl Clone for SoftwareStoreItem
impl Clone for SoftwareStoreItem
Source§fn clone(&self) -> SoftwareStoreItem
fn clone(&self) -> SoftwareStoreItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SoftwareStoreItem
impl Debug for SoftwareStoreItem
Source§impl<'de> Deserialize<'de> for SoftwareStoreItem
impl<'de> Deserialize<'de> for SoftwareStoreItem
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
Auto Trait Implementations§
impl Freeze for SoftwareStoreItem
impl RefUnwindSafe for SoftwareStoreItem
impl Send for SoftwareStoreItem
impl Sync for SoftwareStoreItem
impl Unpin for SoftwareStoreItem
impl UnsafeUnpin for SoftwareStoreItem
impl UnwindSafe for SoftwareStoreItem
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