pub enum LayoutError {
Show 32 variants
MissingManifest(PathBuf),
MissingLib {
caixa: String,
expected: PathBuf,
},
BinarioWithoutExe(String),
ServicoWithoutServicos(String),
MissingEntry {
kind: &'static str,
path: PathBuf,
},
ExeOutsideDir(PathBuf),
ServicoOutsideDir(PathBuf),
NomeViolation {
caixa: String,
issue: String,
},
VersaoViolation {
caixa: String,
issue: String,
},
DepsViolation {
caixa: String,
issue: String,
},
EtiquetasViolation {
caixa: String,
issue: String,
},
AutoresViolation {
caixa: String,
issue: String,
},
RepositorioViolation {
caixa: String,
issue: String,
},
DescricaoViolation {
caixa: String,
issue: String,
},
LicencaViolation {
caixa: String,
issue: String,
},
EdicaoViolation {
caixa: String,
issue: String,
},
CodePathViolation {
caixa: String,
issue: String,
},
LimitsViolation {
caixa: String,
issue: String,
},
BehaviorViolation {
caixa: String,
issue: String,
},
UpgradeViolation {
caixa: String,
issue: String,
},
SupervisorViolation {
caixa: String,
issue: String,
},
RestartWindowViolation {
caixa: String,
issue: String,
},
SupervisorOwnsCode(String),
AplicacaoViolation {
caixa: String,
issue: String,
},
AplicacaoOwnsCode(String),
AcaoOwnsCode(String),
MeshSlotsOnNonAplicacao {
caixa: String,
kind: CaixaKind,
slots: String,
},
SupervisorSlotsOnNonSupervisor {
caixa: String,
kind: CaixaKind,
slots: String,
},
ServicoSlotsOnNonServico {
caixa: String,
kind: CaixaKind,
slots: String,
},
ForeignCodeSlot {
caixa: String,
kind: CaixaKind,
slots: String,
},
MissingCi(String),
CiOnNonAcao {
caixa: String,
kind: CaixaKind,
},
}Variants§
MissingManifest(PathBuf)
MissingLib
BinarioWithoutExe(String)
ServicoWithoutServicos(String)
MissingEntry
ExeOutsideDir(PathBuf)
ServicoOutsideDir(PathBuf)
NomeViolation
VersaoViolation
DepsViolation
EtiquetasViolation
AutoresViolation
RepositorioViolation
DescricaoViolation
LicencaViolation
EdicaoViolation
CodePathViolation
LimitsViolation
BehaviorViolation
UpgradeViolation
SupervisorViolation
RestartWindowViolation
SupervisorOwnsCode(String)
AplicacaoViolation
AplicacaoOwnsCode(String)
AcaoOwnsCode(String)
MeshSlotsOnNonAplicacao
SupervisorSlotsOnNonSupervisor
ServicoSlotsOnNonServico
ForeignCodeSlot
MissingCi(String)
CiOnNonAcao
Trait Implementations§
Source§impl Debug for LayoutError
impl Debug for LayoutError
Source§impl Display for LayoutError
impl Display for LayoutError
impl Eq for LayoutError
Source§impl Error for LayoutError
impl Error for LayoutError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for LayoutError
impl PartialEq for LayoutError
impl StructuralPartialEq for LayoutError
Auto Trait Implementations§
impl Freeze for LayoutError
impl RefUnwindSafe for LayoutError
impl Send for LayoutError
impl Sync for LayoutError
impl Unpin for LayoutError
impl UnsafeUnpin for LayoutError
impl UnwindSafe for LayoutError
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.