pub struct ClientApplication {
pub details_uri: Option<String>,
pub latest_version: String,
pub links: Option<Vec<ClientApplicationsDownloadLink>>,
pub minimum_version: Option<String>,
pub name: String,
pub supported: bool,
}Fields§
§details_uri: Option<String>§latest_version: StringSemantic version
links: Option<Vec<ClientApplicationsDownloadLink>>§minimum_version: Option<String>Semantic version
name: String§supported: boolImplementations§
Trait Implementations§
source§impl Clone for ClientApplication
impl Clone for ClientApplication
source§fn clone(&self) -> ClientApplication
fn clone(&self) -> ClientApplication
Returns a copy 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 ClientApplication
impl Debug for ClientApplication
source§impl Default for ClientApplication
impl Default for ClientApplication
source§fn default() -> ClientApplication
fn default() -> ClientApplication
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ClientApplication
impl<'de> Deserialize<'de> for ClientApplication
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 ClientApplication
impl PartialEq for ClientApplication
source§fn eq(&self, other: &ClientApplication) -> bool
fn eq(&self, other: &ClientApplication) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ClientApplication
impl Serialize for ClientApplication
impl StructuralPartialEq for ClientApplication
Auto Trait Implementations§
impl Freeze for ClientApplication
impl RefUnwindSafe for ClientApplication
impl Send for ClientApplication
impl Sync for ClientApplication
impl Unpin for ClientApplication
impl UnwindSafe for ClientApplication
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