[][src]Enum dqcsim::bindings::dqcs_plugin_type_t

#[repr(C)]pub enum dqcs_plugin_type_t {
    DQCS_PTYPE_INVALID,
    DQCS_PTYPE_FRONT,
    DQCS_PTYPE_OPER,
    DQCS_PTYPE_BACK,
}

Enumeration of the three types of plugins.

Variants

DQCS_PTYPE_INVALID

Invalid plugin type. Used to indicate failure of an API that returns a plugin type.

DQCS_PTYPE_FRONT

Frontend plugin.

DQCS_PTYPE_OPER

Operator plugin.

DQCS_PTYPE_BACK

Backend plugin.

Trait Implementations

impl Clone for dqcs_plugin_type_t[src]

impl Copy for dqcs_plugin_type_t[src]

impl Debug for dqcs_plugin_type_t[src]

impl From<PluginType> for dqcs_plugin_type_t[src]

impl Into<Result<PluginType, Error>> for dqcs_plugin_type_t[src]

impl PartialEq<dqcs_plugin_type_t> for dqcs_plugin_type_t[src]

impl StructuralPartialEq for dqcs_plugin_type_t[src]

Auto Trait Implementations

impl RefUnwindSafe for dqcs_plugin_type_t

impl Send for dqcs_plugin_type_t

impl Sync for dqcs_plugin_type_t

impl Unpin for dqcs_plugin_type_t

impl UnwindSafe for dqcs_plugin_type_t

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> 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>,