Enum assorted_debian_utils::wb::WBArchitecture
source · [−]pub enum WBArchitecture {
Any,
All,
Architecture(Architecture),
MinusArchitecture(Architecture),
}
Expand description
Architectures understood by wb
In addition to the the architectures from Architecture, wb
has two special “architectures”
named ANY
(all binary-dependent architectures) and ALL
(all architectures). Also, it
supports negation of architectures, e.g., ANY -i386
refers to all binary-dependent
architectures without i386
.
Variants
Any
The special ANY
architecture, i.e., all architectures understood by wb except all
All
The special ALL
architecture, i.e., all architectures understood by wb
Architecture(Architecture)
Specify an architecture
MinusArchitecture(Architecture)
Exclude a specific architecture
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for WBArchitecture
impl Send for WBArchitecture
impl Sync for WBArchitecture
impl Unpin for WBArchitecture
impl UnwindSafe for WBArchitecture
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.