pub struct ScopeReport {
pub issues: Vec<ScopeIssue>,
pub skipped_plugins: Vec<String>,
pub layout: Option<Layout>,
}Fields§
§issues: Vec<ScopeIssue>Blocking: at least one -> fallback (or error without Composer).
skipped_plugins: Vec<String>Non-blocking: harmless plugins ignored, to report on stderr.
layout: Option<Layout>Resolved layout (None if a layout issue blocks).
Implementations§
Source§impl ScopeReport
impl ScopeReport
pub fn is_native_ok(&self) -> bool
Trait Implementations§
Source§impl Debug for ScopeReport
impl Debug for ScopeReport
Source§impl Default for ScopeReport
impl Default for ScopeReport
Source§fn default() -> ScopeReport
fn default() -> ScopeReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScopeReport
impl RefUnwindSafe for ScopeReport
impl Send for ScopeReport
impl Sync for ScopeReport
impl Unpin for ScopeReport
impl UnsafeUnpin for ScopeReport
impl UnwindSafe for ScopeReport
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