pub struct IFunctionSignature {
pub name: Arc<String>,
pub arguments: Arc<Vec<IFunctionArg>>,
pub outputs: Arc<Vec<IType>>,
pub adapter_function_type: u32,
}Expand description
Represent a function type inside Marine module.
Fields§
§name: Arc<String>§arguments: Arc<Vec<IFunctionArg>>§outputs: Arc<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
source§impl Hash for IFunctionSignature
impl Hash for IFunctionSignature
source§impl PartialEq<IFunctionSignature> for IFunctionSignature
impl PartialEq<IFunctionSignature> for IFunctionSignature
source§fn eq(&self, other: &IFunctionSignature) -> bool
fn eq(&self, other: &IFunctionSignature) -> bool
This method tests for
self and other values to be equal, and is used
by ==.