[][src]Struct csound::OpcodeListEntry

pub struct OpcodeListEntry {
    pub opname: Option<String>,
    pub outypes: Option<String>,
    pub intypes: Option<String>,
    pub flags: i32,
}

Struct with information about a csound opcode.

Used to get the complete csound opcodes list, so the Csound::get_opcode_list_entry method will return a list of OpcodeListEntry, where each of this struct contain information relative a specific csound opcode.

Fields

opname: Option<String>

The opcode name.

outypes: Option<String>

The opcode ouput type.

intypes: Option<String>

The opcode input type.

flags: i32

Trait Implementations

impl Default for OpcodeListEntry[src]

impl Debug for OpcodeListEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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> Borrow for T where
    T: ?Sized
[src]

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

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