#[repr(C, packed(1))]pub struct ApplicationManifestV1 {
pub base: ManifestBase,
pub stack_size: u16,
pub app_version: u32,
pub name: [u8; 32],
pub has_icon: c_char,
pub icon: [u8; 32],
}Expand description
Application Manifest (version 1).
Fields§
§base: ManifestBase§stack_size: u16§app_version: u32§name: [u8; 32]§has_icon: c_char§icon: [u8; 32]Implementations§
Auto Trait Implementations§
impl Freeze for ApplicationManifestV1
impl RefUnwindSafe for ApplicationManifestV1
impl Send for ApplicationManifestV1
impl Sync for ApplicationManifestV1
impl Unpin for ApplicationManifestV1
impl UnwindSafe for ApplicationManifestV1
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