pub struct AssetModuleMetadata {
pub delivery_type: Option<String>,
pub name: Option<String>,
}Expand description
Metadata of an asset module.
This type is not used in any activity, and only used as part of another schema.
Fields§
§delivery_type: Option<String>Indicates the delivery type for persistent install.
name: Option<String>Module name.
Trait Implementations§
Source§impl Clone for AssetModuleMetadata
impl Clone for AssetModuleMetadata
Source§fn clone(&self) -> AssetModuleMetadata
fn clone(&self) -> AssetModuleMetadata
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 AssetModuleMetadata
impl Debug for AssetModuleMetadata
Source§impl Default for AssetModuleMetadata
impl Default for AssetModuleMetadata
Source§fn default() -> AssetModuleMetadata
fn default() -> AssetModuleMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetModuleMetadata
impl<'de> Deserialize<'de> for AssetModuleMetadata
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 AssetModuleMetadata
impl Serialize for AssetModuleMetadata
impl Part for AssetModuleMetadata
Auto Trait Implementations§
impl Freeze for AssetModuleMetadata
impl RefUnwindSafe for AssetModuleMetadata
impl Send for AssetModuleMetadata
impl Sync for AssetModuleMetadata
impl Unpin for AssetModuleMetadata
impl UnwindSafe for AssetModuleMetadata
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