[][src]Struct dqcsim::common::protocol::FrontendRunRequest

pub struct FrontendRunRequest {
    pub start: Option<ArbData>,
    pub messages: Vec<ArbData>,
}

Frontend run request. See SimulatorToPlugin::RunRequest.

Fields

start: Option<ArbData>

When specified, the frontend's run() callback must be called with the contained ArbData as argument.

messages: Vec<ArbData>

Messages queued up through the host's send() function, to be consumed by the plugin's recv() function.

Trait Implementations

impl PartialEq<FrontendRunRequest> for FrontendRunRequest[src]

impl Into<SimulatorToPlugin> for FrontendRunRequest[src]

impl Debug for FrontendRunRequest[src]

impl Serialize for FrontendRunRequest[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

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