pub struct Listing {
pub full_description: Option<String>,
pub language: Option<String>,
pub short_description: Option<String>,
pub title: Option<String>,
pub video: Option<String>,
}Expand description
A localized store listing. The resource for ListingsService.
§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).
- listings get edits (response)
- listings patch edits (request|response)
- listings update edits (request|response)
Fields§
§full_description: Option<String>Full description of the app.
language: Option<String>Language localization code (a BCP-47 language tag; for example, “de-AT” for Austrian German).
short_description: Option<String>Short description of the app.
title: Option<String>Localized title of the app.
video: Option<String>URL of a promotional YouTube video for the app.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Listing
impl<'de> Deserialize<'de> for Listing
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
impl RequestValue for Listing
impl ResponseResult for Listing
Auto Trait Implementations§
impl Freeze for Listing
impl RefUnwindSafe for Listing
impl Send for Listing
impl Sync for Listing
impl Unpin for Listing
impl UnwindSafe for Listing
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