pub struct IFunctionSignature {
pub name: Rc<String>,
pub arguments: Rc<Vec<IFunctionArg>>,
pub outputs: Rc<Vec<IType>>,
pub adapter_function_type: u32,
}Expand description
Represent a function type inside Marine module.
Fields§
§name: Rc<String>§arguments: Rc<Vec<IFunctionArg>>§outputs: Rc<Vec<IType>>§adapter_function_type: u32Trait Implementations§
source§impl Clone for IFunctionSignature
impl Clone for IFunctionSignature
source§fn clone(&self) -> IFunctionSignature
fn clone(&self) -> IFunctionSignature
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 Debug for IFunctionSignature
impl Debug for IFunctionSignature
source§impl<'de> Deserialize<'de> for IFunctionSignature
impl<'de> Deserialize<'de> for IFunctionSignature
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more