pub struct ApkProgram {
pub name: String,
pub long_name: String,
pub version: String,
pub description: String,
pub website: String,
pub size: Option<i32>,
pub update: String,
pub sub_versions: Vec<ApkProgramSubVersion>,
}Fields§
§name: String§long_name: String§version: String§description: String§website: String§size: Option<i32>§update: String§sub_versions: Vec<ApkProgramSubVersion>Trait Implementations§
Source§impl Clone for ApkProgram
impl Clone for ApkProgram
Source§fn clone(&self) -> ApkProgram
fn clone(&self) -> ApkProgram
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 moreAuto Trait Implementations§
impl Freeze for ApkProgram
impl RefUnwindSafe for ApkProgram
impl Send for ApkProgram
impl Sync for ApkProgram
impl Unpin for ApkProgram
impl UnwindSafe for ApkProgram
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