pub struct WasmPkgNoSourceDto {
pub name: String,
pub app_name: Option<String>,
pub app_module: Option<String>,
pub capabilities: Option<Capabilities>,
pub pkg_type: PkgType,
pub meta: PkgMetaDto,
}Expand description
DTO for WasmPkgNoSource
Fields§
§name: String§app_name: Option<String>§app_module: Option<String>§capabilities: Option<Capabilities>§pkg_type: PkgType§meta: PkgMetaDtoTrait Implementations§
Source§impl Clone for WasmPkgNoSourceDto
impl Clone for WasmPkgNoSourceDto
Source§fn clone(&self) -> WasmPkgNoSourceDto
fn clone(&self) -> WasmPkgNoSourceDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WasmPkgNoSourceDto
impl Debug for WasmPkgNoSourceDto
Source§impl<'de> Deserialize<'de> for WasmPkgNoSourceDto
impl<'de> Deserialize<'de> for WasmPkgNoSourceDto
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 From<WasmPkgNoSource> for WasmPkgNoSourceDto
impl From<WasmPkgNoSource> for WasmPkgNoSourceDto
Source§fn from(value: WasmPkgNoSource) -> Self
fn from(value: WasmPkgNoSource) -> Self
Converts to this type from the input type.
Source§impl From<WasmPkgNoSourceDto> for WasmPkgNoSource
impl From<WasmPkgNoSourceDto> for WasmPkgNoSource
Source§fn from(value: WasmPkgNoSourceDto) -> Self
fn from(value: WasmPkgNoSourceDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WasmPkgNoSourceDto
impl RefUnwindSafe for WasmPkgNoSourceDto
impl Send for WasmPkgNoSourceDto
impl Sync for WasmPkgNoSourceDto
impl Unpin for WasmPkgNoSourceDto
impl UnsafeUnpin for WasmPkgNoSourceDto
impl UnwindSafe for WasmPkgNoSourceDto
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