pub enum OpenBsdArch {
_386,
Amd64,
Arm(Option<ArmVariant>),
Arm64(Option<Arm64Variant>),
}Expand description
OpenBSD architectures.
Variants§
_386
x86 / 32-bit x86
Amd64
x86_64 / 64-bit x86
Arm(Option<ArmVariant>)
32-bit ARM
Arm64(Option<Arm64Variant>)
AArch64 / 64-bit ARM
Implementations§
Trait Implementations§
Source§impl AsRef<str> for OpenBsdArch
impl AsRef<str> for OpenBsdArch
Source§impl Clone for OpenBsdArch
impl Clone for OpenBsdArch
Source§fn clone(&self) -> OpenBsdArch
fn clone(&self) -> OpenBsdArch
Returns a duplicate 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 OpenBsdArch
impl Debug for OpenBsdArch
Source§impl<'_de> Deserialize<'_de> for OpenBsdArch
impl<'_de> Deserialize<'_de> for OpenBsdArch
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'_de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'_de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OpenBsdArch
impl Display for OpenBsdArch
Source§impl From<OpenBsdArch> for Arch
impl From<OpenBsdArch> for Arch
Source§fn from(value: OpenBsdArch) -> Arch
fn from(value: OpenBsdArch) -> Arch
Converts to this type from the input type.
Source§impl FromStr for OpenBsdArch
impl FromStr for OpenBsdArch
Source§impl Hash for OpenBsdArch
impl Hash for OpenBsdArch
Source§impl PartialEq for OpenBsdArch
impl PartialEq for OpenBsdArch
Source§impl Serialize for OpenBsdArch
impl Serialize for OpenBsdArch
Source§impl TryFrom<&str> for OpenBsdArch
impl TryFrom<&str> for OpenBsdArch
Source§impl TryFrom<Arch> for OpenBsdArch
impl TryFrom<Arch> for OpenBsdArch
impl Copy for OpenBsdArch
impl Eq for OpenBsdArch
impl StructuralPartialEq for OpenBsdArch
Auto Trait Implementations§
impl Freeze for OpenBsdArch
impl RefUnwindSafe for OpenBsdArch
impl Send for OpenBsdArch
impl Sync for OpenBsdArch
impl Unpin for OpenBsdArch
impl UnwindSafe for OpenBsdArch
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.