pub enum DeploymentTarget {
Esp32,
Wasm,
Native,
}Expand description
Target platform for constellation compilation.
Variants§
Trait Implementations§
Source§impl Clone for DeploymentTarget
impl Clone for DeploymentTarget
Source§fn clone(&self) -> DeploymentTarget
fn clone(&self) -> DeploymentTarget
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 DeploymentTarget
Source§impl Debug for DeploymentTarget
impl Debug for DeploymentTarget
Source§impl Display for DeploymentTarget
impl Display for DeploymentTarget
impl Eq for DeploymentTarget
Source§impl PartialEq for DeploymentTarget
impl PartialEq for DeploymentTarget
Source§fn eq(&self, other: &DeploymentTarget) -> bool
fn eq(&self, other: &DeploymentTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeploymentTarget
Auto Trait Implementations§
impl Freeze for DeploymentTarget
impl RefUnwindSafe for DeploymentTarget
impl Send for DeploymentTarget
impl Sync for DeploymentTarget
impl Unpin for DeploymentTarget
impl UnsafeUnpin for DeploymentTarget
impl UnwindSafe for DeploymentTarget
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