pub enum WBArchitecture {
Any,
All,
Architecture(Architecture),
ExcludeArchitecture(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
ExcludeArchitecture(Architecture)
Exclude a specific architecture
Trait Implementations§
Source§impl Clone for WBArchitecture
impl Clone for WBArchitecture
Source§fn clone(&self) -> WBArchitecture
fn clone(&self) -> WBArchitecture
Returns a copy of the value. Read more
1.0.0 · 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 WBArchitecture
impl Debug for WBArchitecture
Source§impl Display for WBArchitecture
impl Display for WBArchitecture
Source§impl FromStr for WBArchitecture
impl FromStr for WBArchitecture
Source§impl Hash for WBArchitecture
impl Hash for WBArchitecture
Source§impl PartialEq for WBArchitecture
impl PartialEq for WBArchitecture
Source§impl TryFrom<&str> for WBArchitecture
impl TryFrom<&str> for WBArchitecture
impl Copy for WBArchitecture
impl Eq for WBArchitecture
impl StructuralPartialEq for WBArchitecture
Auto Trait Implementations§
impl Freeze for WBArchitecture
impl RefUnwindSafe for WBArchitecture
impl Send for WBArchitecture
impl Sync for WBArchitecture
impl Unpin for WBArchitecture
impl UnwindSafe for WBArchitecture
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.