pub struct AppListItem {
pub active: Option<i64>,
pub app_id: i64,
pub app_markup_percentage: String,
pub appstore: Option<Value>,
pub github: Option<Value>,
pub googleplay: Option<Value>,
pub homepage: Option<Value>,
pub name: String,
pub redirect_uri: String,
pub scopes: Option<Vec<String>>,
pub verification_uri: Option<Value>,
}
Fields§
§active: Option<i64>
Active.\n
app_id: i64
Application ID.\n
app_markup_percentage: String
Markup added to contract prices (as a percentage of contract payout).\n
appstore: Option<Value>
Application’s App Store URL.\n
github: Option<Value>
Application’s GitHub page. (for open-source projects)\n
googleplay: Option<Value>
Application’s Google Play URL.\n
homepage: Option<Value>
Application’s homepage URL.\n
name: String
Application name.\n
redirect_uri: String
The URL to redirect to after a successful login.\n
scopes: Option<Vec<String>>
Scope Details.\n
verification_uri: Option<Value>
Used when verify_email
called. If available, a URL containing the verification token will send to the client’s email, otherwise only the token will be sent.\n
Trait Implementations§
Source§impl Clone for AppListItem
impl Clone for AppListItem
Source§fn clone(&self) -> AppListItem
fn clone(&self) -> AppListItem
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 AppListItem
impl Debug for AppListItem
Source§impl<'de> Deserialize<'de> for AppListItem
impl<'de> Deserialize<'de> for AppListItem
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 AppListItem
impl RefUnwindSafe for AppListItem
impl Send for AppListItem
impl Sync for AppListItem
impl Unpin for AppListItem
impl UnwindSafe for AppListItem
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