[][src]Struct dqcsim::bindings::dqcs_plugin_state_t

#[repr(transparent)]pub struct dqcs_plugin_state_t(_);

Type for a plugin state.

This is an opaque type that is passed along to plugin implementation callback functions, which those callbacks can then use to interact with the plugin instance. User code shall not create or modify values of this type, and shall only use the values when calling dqcs_plugin_* functions.

Implementations

impl dqcs_plugin_state_t[src]

pub fn resolve(self) -> Result<&'static mut PluginState<'static>>[src]

Trait Implementations

impl Clone for dqcs_plugin_state_t[src]

impl Copy for dqcs_plugin_state_t[src]

impl<'a, '_> From<&'_ mut PluginState<'a>> for dqcs_plugin_state_t[src]

fn from(pc: &mut PluginState<'_>) -> dqcs_plugin_state_t[src]

Convert a plugin state reference to its FFI representation.

impl<'_> Into<&'_ mut PluginState<'static>> for dqcs_plugin_state_t[src]

fn into(self) -> &'static mut PluginState<'static>[src]

Convert the FFI representation of a plugin state back to a Rust reference.

Auto Trait Implementations

impl RefUnwindSafe for dqcs_plugin_state_t

impl !Send for dqcs_plugin_state_t

impl !Sync for dqcs_plugin_state_t

impl Unpin for dqcs_plugin_state_t

impl UnwindSafe for dqcs_plugin_state_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>,