[][src]Struct dqcsim::common::types::ArbCmd

pub struct ArbCmd { /* fields omitted */ }

Represents an ArbCmd structure, consisting of interface and operation identifier strings and an ArbData object.

Methods

impl ArbCmd[src]

pub fn new(
    interface_identifier: impl Into<String>,
    operation_identifier: impl Into<String>,
    data: ArbData
) -> ArbCmd
[src]

Constructs an ArbCmd.

The identifiers may only contain characters in the pattern [a-zA-Z0-9_]. It this is not the case, this function panics.

pub fn try_from(
    interface_identifier: impl Into<String>,
    operation_identifier: impl Into<String>,
    data: ArbData
) -> Result<ArbCmd>
[src]

Constructs an ArbCmd.

The identifiers may only contain characters in the pattern [a-zA-Z0-9_]. It this is not the case, this function fails.

pub fn interface_identifier(&self) -> &str[src]

Returns a reference to the interface identifier for this ArbCmd.

pub fn operation_identifier(&self) -> &str[src]

Returns a reference to the operation identifier for this ArbCmd.

pub fn data(&self) -> &ArbData[src]

Returns a reference to the data for this ArbCmd.

pub fn data_mut(&mut self) -> &mut ArbData[src]

Returns a mutable reference to the data for this ArbCmd.

Trait Implementations

impl PartialEq<ArbCmd> for ArbCmd[src]

impl Into<SimulatorToPlugin> for ArbCmd[src]

impl Into<ArbData> for ArbCmd[src]

impl Clone for ArbCmd[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ArbCmd[src]

impl Display for ArbCmd[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Turns the ArbCmd object into a string representation that can be parsed by from_str().

impl FromStr for ArbCmd[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Constructs an ArbCmd from its string representation. The following representations are allowed:

  • <interface-id>.<operation-id> (use ArbData::default())
  • <interface-id>.<operation-id>:<json>,<arg1>,<arg2>,[...] (use ArbData::from_str())
  • <interface-id>.<operation-id>.<arg1>,<arg2>,[...] (use ArbData::from_str_args_only())

impl Serialize for ArbCmd[src]

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

Auto Trait Implementations

impl Send for ArbCmd

impl Unpin for ArbCmd

impl Sync for ArbCmd

impl UnwindSafe for ArbCmd

impl RefUnwindSafe for ArbCmd

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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