pub struct AppDetails {
pub contact_email: Option<String>,
pub contact_phone: Option<String>,
pub contact_website: Option<String>,
pub default_language: Option<String>,
}Expand description
The app details. The resource for DetailsService.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- details get edits (response)
- details patch edits (request|response)
- details update edits (request|response)
Fields§
§contact_email: Option<String>The user-visible support email for this app.
contact_phone: Option<String>The user-visible support telephone number for this app.
contact_website: Option<String>The user-visible website for this app.
default_language: Option<String>Default language code, in BCP 47 format (eg “en-US”).
Trait Implementations§
Source§impl Clone for AppDetails
impl Clone for AppDetails
Source§fn clone(&self) -> AppDetails
fn clone(&self) -> AppDetails
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 AppDetails
impl Debug for AppDetails
Source§impl Default for AppDetails
impl Default for AppDetails
Source§fn default() -> AppDetails
fn default() -> AppDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppDetails
impl<'de> Deserialize<'de> for AppDetails
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 Serialize for AppDetails
impl Serialize for AppDetails
impl RequestValue for AppDetails
impl ResponseResult for AppDetails
Auto Trait Implementations§
impl Freeze for AppDetails
impl RefUnwindSafe for AppDetails
impl Send for AppDetails
impl Sync for AppDetails
impl Unpin for AppDetails
impl UnwindSafe for AppDetails
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