pub struct BootstrapReport {
pub layout_created: bool,
pub release: Option<ReleaseReport>,
pub auto_configure: Option<AutoConfigureReport>,
pub path_config: Option<PathConfigReport>,
pub state_after: BootstrapState,
pub messages: Vec<String>,
}Expand description
Result of run_bootstrap. Tauri layer can surface progress to the user.
Fields§
§layout_created: bool§release: Option<ReleaseReport>§auto_configure: Option<AutoConfigureReport>§path_config: Option<PathConfigReport>§state_after: BootstrapState§messages: Vec<String>Trait Implementations§
Source§impl Clone for BootstrapReport
impl Clone for BootstrapReport
Source§fn clone(&self) -> BootstrapReport
fn clone(&self) -> BootstrapReport
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 BootstrapReport
impl Debug for BootstrapReport
Source§impl Default for BootstrapReport
impl Default for BootstrapReport
Source§fn default() -> BootstrapReport
fn default() -> BootstrapReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BootstrapReport
impl RefUnwindSafe for BootstrapReport
impl Send for BootstrapReport
impl Sync for BootstrapReport
impl Unpin for BootstrapReport
impl UnsafeUnpin for BootstrapReport
impl UnwindSafe for BootstrapReport
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