[][src]Enum dqcsim::common::types::PluginType

pub enum PluginType {
    Frontend,
    Operator,
    Backend,
}

Enumeration of the three types of plugins.

Variants

Frontend
Operator
Backend

Trait Implementations

impl Clone for PluginType[src]

impl Copy for PluginType[src]

impl Debug for PluginType[src]

impl<'de> Deserialize<'de> for PluginType[src]

impl From<PluginType> for dqcs_plugin_type_t[src]

impl PartialEq<PluginType> for PluginType[src]

impl Serialize for PluginType[src]

impl StructuralPartialEq for PluginType[src]

Auto Trait Implementations

impl RefUnwindSafe for PluginType

impl Send for PluginType

impl Sync for PluginType

impl Unpin for PluginType

impl UnwindSafe for PluginType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,