pub struct InstalledApp {
pub app_name: Box<str>,
pub publisher_tag: Box<str>,
pub version: Box<str>,
pub action_id: Box<str>,
pub file_id: Box<str>,
pub blob_id: Box<str>,
pub status: Box<str>,
pub capabilities: Option<Vec<Box<str>>>,
pub auto_update: bool,
pub installed_at: Timestamp,
}Expand description
Installed app record
Fields§
§app_name: Box<str>§publisher_tag: Box<str>§version: Box<str>§action_id: Box<str>§file_id: Box<str>§blob_id: Box<str>§status: Box<str>§capabilities: Option<Vec<Box<str>>>§auto_update: bool§installed_at: TimestampTrait Implementations§
Source§impl Debug for InstalledApp
impl Debug for InstalledApp
Auto Trait Implementations§
impl Freeze for InstalledApp
impl RefUnwindSafe for InstalledApp
impl Send for InstalledApp
impl Sync for InstalledApp
impl Unpin for InstalledApp
impl UnsafeUnpin for InstalledApp
impl UnwindSafe for InstalledApp
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