Enum appscraps_dll::func::Func [] [src]

pub enum Func {
    NativeFuncNone(NativeFuncNone),
    NativeFuncInput(NativeFuncInput),
    NativeFuncOutput(NativeFuncOutput),
    NativeFuncInputOutput(NativeFuncInputOutput),
    StringFuncNone(StringFuncNone),
    StringFuncInput(StringFuncInput),
    StringFuncOutput(StringFuncOutput),
    StringFuncInputOutput(StringFuncInputOutput),
}

Variants

Methods

impl Func
[src]

Trait Implementations

impl Clone for Func
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<NativeFuncNone> for Func
[src]

Performs the conversion.

impl From<NativeFuncInput> for Func
[src]

Performs the conversion.

impl From<NativeFuncOutput> for Func
[src]

Performs the conversion.

impl From<NativeFuncInputOutput> for Func
[src]

Performs the conversion.

impl From<StringFuncNone> for Func
[src]

Performs the conversion.

impl From<StringFuncInput> for Func
[src]

Performs the conversion.

impl From<StringFuncOutput> for Func
[src]

Performs the conversion.

impl From<StringFuncInputOutput> for Func
[src]

Performs the conversion.