pub struct Import<'input> {
pub namespace: &'input str,
pub name: &'input str,
pub signature_type: u32,
}Expand description
Represents an imported function.
Fields§
§namespace: &'input strThe function namespace.
name: &'input strThe function name.
signature_type: u32The type signature.
Trait Implementations§
Source§impl<W> ToBytes<W> for Import<'_>where
W: Write,
Encode an Import into bytes.
impl<W> ToBytes<W> for Import<'_>where
W: Write,
Encode an Import into bytes.
Decoder is in decoders::binary::imports.
impl<'input> StructuralPartialEq for Import<'input>
Auto Trait Implementations§
impl<'input> Freeze for Import<'input>
impl<'input> RefUnwindSafe for Import<'input>
impl<'input> Send for Import<'input>
impl<'input> Sync for Import<'input>
impl<'input> Unpin for Import<'input>
impl<'input> UnsafeUnpin for Import<'input>
impl<'input> UnwindSafe for Import<'input>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more