pub enum FreeBsdArch {
_386,
Amd64,
Arm(Option<ArmVariant>),
}Expand description
FreeBSD architectures.
Variants§
Implementations§
Trait Implementations§
Source§impl AsRef<str> for FreeBsdArch
impl AsRef<str> for FreeBsdArch
Source§impl Clone for FreeBsdArch
impl Clone for FreeBsdArch
Source§fn clone(&self) -> FreeBsdArch
fn clone(&self) -> FreeBsdArch
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 FreeBsdArch
impl Debug for FreeBsdArch
Source§impl<'_de> Deserialize<'_de> for FreeBsdArch
impl<'_de> Deserialize<'_de> for FreeBsdArch
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 FreeBsdArch
impl Display for FreeBsdArch
Source§impl From<FreeBsdArch> for Arch
impl From<FreeBsdArch> for Arch
Source§fn from(value: FreeBsdArch) -> Arch
fn from(value: FreeBsdArch) -> Arch
Converts to this type from the input type.
Source§impl FromStr for FreeBsdArch
impl FromStr for FreeBsdArch
Source§impl Hash for FreeBsdArch
impl Hash for FreeBsdArch
Source§impl PartialEq for FreeBsdArch
impl PartialEq for FreeBsdArch
Source§impl Serialize for FreeBsdArch
impl Serialize for FreeBsdArch
Source§impl TryFrom<&str> for FreeBsdArch
impl TryFrom<&str> for FreeBsdArch
Source§impl TryFrom<Arch> for FreeBsdArch
impl TryFrom<Arch> for FreeBsdArch
impl Copy for FreeBsdArch
impl Eq for FreeBsdArch
impl StructuralPartialEq for FreeBsdArch
Auto Trait Implementations§
impl Freeze for FreeBsdArch
impl RefUnwindSafe for FreeBsdArch
impl Send for FreeBsdArch
impl Sync for FreeBsdArch
impl Unpin for FreeBsdArch
impl UnwindSafe for FreeBsdArch
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.