pub struct AppInfo {
pub id: String,
pub name: String,
pub version: String,
pub modules: Vec<String>,
}Expand description
Product identity, as the frontend needs it to render the shell.
Fields§
§id: String§name: String§version: String§modules: Vec<String>Modules compiled into this build, in registration order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppInfo
impl RefUnwindSafe for AppInfo
impl Send for AppInfo
impl Sync for AppInfo
impl Unpin for AppInfo
impl UnsafeUnpin for AppInfo
impl UnwindSafe for AppInfo
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