[][src]Enum flowrlib::debug::Param

pub enum Param {
    Wildcard,
    Numeric(usize),
    Output((usize, String)),
    Input((usize, usize)),
    Block((usize, usize)),
}

Types of Params used in communications between the debugger and the debug_client

Variants

Wildcard

A "*" style parameter - meaning will depend on the Command it's use with

Numeric(usize)

A positive integer was specified

Output((usize, String))

A descriptor for the Output of a Function was specified

Input((usize, usize))

A descriptor for the Inout of a Function was specified

Block((usize, usize))

A description of a "block" (when one function is blocked from running by another) was specified

Trait Implementations

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

impl Serialize for Param[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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.