pub enum ScopeIssue {
UnknownPlugin(String),
LayoutPlugin(String),
Layout(String),
NoUsableDist(String),
}Variants§
UnknownPlugin(String)
Plugin absent from the known lists: unpredictable behaviour.
LayoutPlugin(String)
Plugin known to change the layout (patches, installers-extender…).
Layout(String)
Non-reproducible layout (composer/installers: version not ported, framework with custom logic, refused target…).
NoUsableDist(String)
Package without a usable zip dist (source-only, exotic dist).
Trait Implementations§
Source§impl Debug for ScopeIssue
impl Debug for ScopeIssue
Source§impl Display for ScopeIssue
impl Display for ScopeIssue
impl Eq for ScopeIssue
Source§impl PartialEq for ScopeIssue
impl PartialEq for ScopeIssue
impl StructuralPartialEq for ScopeIssue
Auto Trait Implementations§
impl Freeze for ScopeIssue
impl RefUnwindSafe for ScopeIssue
impl Send for ScopeIssue
impl Sync for ScopeIssue
impl Unpin for ScopeIssue
impl UnsafeUnpin for ScopeIssue
impl UnwindSafe for ScopeIssue
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.