pub struct OsListResponse {
pub success: bool,
pub total: u32,
pub os_category: Vec<OsCategory>,
}Fields§
§success: bool§total: u32§os_category: Vec<OsCategory>Trait Implementations§
Source§impl Clone for OsListResponse
impl Clone for OsListResponse
Source§fn clone(&self) -> OsListResponse
fn clone(&self) -> OsListResponse
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 OsListResponse
impl Debug for OsListResponse
Source§impl<'de> Deserialize<'de> for OsListResponse
impl<'de> Deserialize<'de> for OsListResponse
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 OsListResponse
impl RefUnwindSafe for OsListResponse
impl Send for OsListResponse
impl Sync for OsListResponse
impl Unpin for OsListResponse
impl UnsafeUnpin for OsListResponse
impl UnwindSafe for OsListResponse
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