pub struct Application {
pub id: Option<String>,
pub client_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub developer: Option<String>,
pub developer_url: Option<String>,
pub image_url: Option<String>,
}Expand description
Public information of the OAuth application.
Fields§
§id: Option<String>OAuth application’s ID.
client_id: Option<String>OAuth application’s client ID.
name: Option<String>Application name.
description: Option<String>Information about the application.
developer: Option<String>Name of the developer.
developer_url: Option<String>Url of the developer (homepage or docs).
image_url: Option<String>Image of the application.
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
Returns a duplicate 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 Application
impl Debug for Application
Source§impl Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Applicationwhere
Application: Default,
impl<'de> Deserialize<'de> for Applicationwhere
Application: Default,
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 GraphQLFields for Application
impl GraphQLFields for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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