pub struct BundlesListResponse {
pub bundles: Option<Vec<Bundle>>,
pub kind: Option<String>,
}Expand description
Response listing all app bundles.
§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).
- bundles list edits (response)
Fields§
§bundles: Option<Vec<Bundle>>All app bundles.
kind: Option<String>The kind of this response (“androidpublisher#bundlesListResponse”).
Trait Implementations§
Source§impl Clone for BundlesListResponse
impl Clone for BundlesListResponse
Source§fn clone(&self) -> BundlesListResponse
fn clone(&self) -> BundlesListResponse
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 BundlesListResponse
impl Debug for BundlesListResponse
Source§impl Default for BundlesListResponse
impl Default for BundlesListResponse
Source§fn default() -> BundlesListResponse
fn default() -> BundlesListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BundlesListResponse
impl<'de> Deserialize<'de> for BundlesListResponse
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 BundlesListResponse
impl Serialize for BundlesListResponse
impl ResponseResult for BundlesListResponse
Auto Trait Implementations§
impl Freeze for BundlesListResponse
impl RefUnwindSafe for BundlesListResponse
impl Send for BundlesListResponse
impl Sync for BundlesListResponse
impl Unpin for BundlesListResponse
impl UnwindSafe for BundlesListResponse
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