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<ClientApplication> for ClientApplication
impl PartialEq<ClientApplication> 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 ==.