pub enum ComponentFuncResult<'a> {
Unnamed(ComponentValType),
Named(Box<[(&'a str, ComponentValType)], Global>),
}
Expand description
Represents the result type of a component function.
Variants§
Unnamed(ComponentValType)
The function returns a singular, unnamed type.
Named(Box<[(&'a str, ComponentValType)], Global>)
The function returns zero or more named types.
Implementations§
source§impl ComponentFuncResult<'_>
impl ComponentFuncResult<'_>
sourcepub fn type_count(&self) -> usize
pub fn type_count(&self) -> usize
Gets the count of types returned by the function.
Trait Implementations§
source§impl<'a> Clone for ComponentFuncResult<'a>
impl<'a> Clone for ComponentFuncResult<'a>
source§fn clone(&self) -> ComponentFuncResult<'a>
fn clone(&self) -> ComponentFuncResult<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for ComponentFuncResult<'a>
impl<'a> Debug for ComponentFuncResult<'a>
source§impl<'a> FromReader<'a> for ComponentFuncResult<'a>
impl<'a> FromReader<'a> for ComponentFuncResult<'a>
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<ComponentFuncResult<'a>, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<ComponentFuncResult<'a>, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.