pub struct SoftwareInfo {
pub id: String,
pub name: String,
pub description: String,
pub software_type: i32,
pub icon: String,
pub status: i32,
}Fields§
§id: String§name: String§description: String§software_type: i32§icon: String§status: i32Trait Implementations§
Source§impl Clone for SoftwareInfo
impl Clone for SoftwareInfo
Source§fn clone(&self) -> SoftwareInfo
fn clone(&self) -> SoftwareInfo
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 SoftwareInfo
impl Debug for SoftwareInfo
Source§impl<'de> Deserialize<'de> for SoftwareInfo
impl<'de> Deserialize<'de> for SoftwareInfo
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 SoftwareInfo
impl RefUnwindSafe for SoftwareInfo
impl Send for SoftwareInfo
impl Sync for SoftwareInfo
impl Unpin for SoftwareInfo
impl UnsafeUnpin for SoftwareInfo
impl UnwindSafe for SoftwareInfo
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