FunctionParamValue

Trait FunctionParamValue 

Source
pub trait FunctionParamValue {
    // Required method
    fn write_param_value(
        &self,
        writer: &mut dyn Write,
        indent: u16,
    ) -> Result<()>;
}

Required Methods§

Source

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Implementations on Foreign Types§

Source§

impl FunctionParamValue for bool

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for i32

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for i64

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for str

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for u8

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for u32

Source§

fn write_param_value(&self, writer: &mut dyn Write, _indent: u16) -> Result<()>

Source§

impl FunctionParamValue for String

Source§

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Source§

impl FunctionParamValue for AudioFile

Source§

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Source§

impl FunctionParamValue for MoveRoute

Source§

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Source§

impl<T> FunctionParamValue for &[T]

Source§

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Source§

impl<T> FunctionParamValue for Vec<T>

Source§

fn write_param_value(&self, writer: &mut dyn Write, indent: u16) -> Result<()>

Implementors§