pub enum Frontend {
Llvm,
AirJson,
Other(String),
}Expand description
Which frontend to use for ingestion.
Variants§
Llvm
LLVM bitcode / IR frontend.
AirJson
AIR-JSON frontend.
Other(String)
Custom frontend — the string is the frontend identifier.
New frontends can use any string without modifying saf-core.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Frontend
impl<'de> Deserialize<'de> for Frontend
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
impl Eq for Frontend
impl StructuralPartialEq for Frontend
Auto Trait Implementations§
impl Freeze for Frontend
impl RefUnwindSafe for Frontend
impl Send for Frontend
impl Sync for Frontend
impl Unpin for Frontend
impl UnsafeUnpin for Frontend
impl UnwindSafe for Frontend
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.