pub struct AppBundleDetails {
pub id: String,
pub engine: String,
pub description: Option<String>,
pub version: i32,
pub package: Option<String>,
pub upload_parameters: Option<UploadParameters>,
}Expand description
AppBundle details (full)
Fields§
§id: String§engine: String§description: Option<String>§version: i32§package: Option<String>§upload_parameters: Option<UploadParameters>Trait Implementations§
Source§impl Clone for AppBundleDetails
impl Clone for AppBundleDetails
Source§fn clone(&self) -> AppBundleDetails
fn clone(&self) -> AppBundleDetails
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 AppBundleDetails
impl Debug for AppBundleDetails
Source§impl<'de> Deserialize<'de> for AppBundleDetails
impl<'de> Deserialize<'de> for AppBundleDetails
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 AppBundleDetails
impl RefUnwindSafe for AppBundleDetails
impl Send for AppBundleDetails
impl Sync for AppBundleDetails
impl Unpin for AppBundleDetails
impl UnsafeUnpin for AppBundleDetails
impl UnwindSafe for AppBundleDetails
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