Enum FlowArch
#[non_exhaustive]pub enum FlowArch {
X86_64,
Aarch64,
}Expand description
What architecture the flow is being running on.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
§impl<'de> Deserialize<'de> for FlowArch
impl<'de> Deserialize<'de> for FlowArch
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowArch, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowArch, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl HostExt for FlowArch
impl HostExt for FlowArch
§fn host(backend_hint: PipelineBackendHint) -> FlowArch
fn host(backend_hint: PipelineBackendHint) -> FlowArch
Return the arch of the current host machine.
Will panic on non-local backends.
§impl Ord for FlowArch
impl Ord for FlowArch
§impl PartialOrd for FlowArch
impl PartialOrd for FlowArch
§impl Serialize for FlowArch
impl Serialize for FlowArch
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for FlowArch
impl Eq for FlowArch
impl StructuralPartialEq for FlowArch
Auto Trait Implementations§
impl Freeze for FlowArch
impl RefUnwindSafe for FlowArch
impl Send for FlowArch
impl Sync for FlowArch
impl Unpin for FlowArch
impl UnwindSafe for FlowArch
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§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.