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
sourceimpl Clone for IFunctionSignature
impl Clone for IFunctionSignature
sourcefn clone(&self) -> IFunctionSignature
fn clone(&self) -> IFunctionSignature
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for IFunctionSignature
impl Debug for IFunctionSignature
sourceimpl<'de> Deserialize<'de> for IFunctionSignature
impl<'de> Deserialize<'de> for IFunctionSignature
sourcefn 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
sourceimpl Hash for IFunctionSignature
impl Hash for IFunctionSignature
sourceimpl PartialEq<IFunctionSignature> for IFunctionSignature
impl PartialEq<IFunctionSignature> for IFunctionSignature
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &IFunctionSignature) -> bool
fn ne(&self, other: &IFunctionSignature) -> bool
This method tests for !=.
sourceimpl Serialize for IFunctionSignature
impl Serialize for IFunctionSignature
impl Eq for IFunctionSignature
impl StructuralEq for IFunctionSignature
impl StructuralPartialEq for IFunctionSignature
Auto Trait Implementations
impl RefUnwindSafe for IFunctionSignature
impl !Send for IFunctionSignature
impl !Sync for IFunctionSignature
impl Unpin for IFunctionSignature
impl UnwindSafe for IFunctionSignature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more