Trait CapeValueProviderOut

Source
pub trait CapeValueProviderOut {
    // Required method
    fn as_cape_value_out(&mut self) -> ICapeValue;
}
Expand description

COBIA prelude

This module contains the most commonly used types, functions and traits.

§Examples

use cobia::prelude::*;

Any object that implements this trait can be converted to an ICapeValue output argument

This trait is implemented by any object that can be passed as an ICapeValue output argument

Required Methods§

Source

fn as_cape_value_out(&mut self) -> ICapeValue

Convert to ICapeValue

Implementors§