pub enum ArtifactFormat {
Wasm,
Elf,
MachO,
PeCoff,
Archive,
}Expand description
A binary container format that codehelion recognises.
Variants§
Wasm
A WebAssembly core module or component.
Elf
An ELF executable, shared library, or relocatable object.
MachO
A Mach-O executable, dynamic library, or relocatable object.
PeCoff
A PE image or COFF relocatable object.
Archive
A static archive.
Implementations§
Trait Implementations§
Source§impl Clone for ArtifactFormat
impl Clone for ArtifactFormat
Source§fn clone(&self) -> ArtifactFormat
fn clone(&self) -> ArtifactFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ArtifactFormat
Source§impl Debug for ArtifactFormat
impl Debug for ArtifactFormat
Source§impl<'de> Deserialize<'de> for ArtifactFormat
impl<'de> Deserialize<'de> for ArtifactFormat
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 ArtifactFormat
impl Display for ArtifactFormat
impl Eq for ArtifactFormat
Source§impl Ord for ArtifactFormat
impl Ord for ArtifactFormat
Source§fn cmp(&self, other: &ArtifactFormat) -> Ordering
fn cmp(&self, other: &ArtifactFormat) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ArtifactFormat
impl PartialEq for ArtifactFormat
Source§impl PartialOrd for ArtifactFormat
impl PartialOrd for ArtifactFormat
Source§impl Serialize for ArtifactFormat
impl Serialize for ArtifactFormat
impl StructuralPartialEq for ArtifactFormat
Auto Trait Implementations§
impl Freeze for ArtifactFormat
impl RefUnwindSafe for ArtifactFormat
impl Send for ArtifactFormat
impl Sync for ArtifactFormat
impl Unpin for ArtifactFormat
impl UnsafeUnpin for ArtifactFormat
impl UnwindSafe for ArtifactFormat
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.