pub struct Export<'input> {
pub name: &'input str,
pub function_type: u32,
}Expand description
Represents an exported function signature.
Fields§
§name: &'input strThe export name.
function_type: u32The WIT function type being exported.
Trait Implementations§
Source§impl<W> ToBytes<W> for Export<'_>where
W: Write,
Encode an Export into bytes.
impl<W> ToBytes<W> for Export<'_>where
W: Write,
Encode an Export into bytes.
Decoder is in decoders::binary::exports.
impl<'input> StructuralPartialEq for Export<'input>
Auto Trait Implementations§
impl<'input> Freeze for Export<'input>
impl<'input> RefUnwindSafe for Export<'input>
impl<'input> Send for Export<'input>
impl<'input> Sync for Export<'input>
impl<'input> Unpin for Export<'input>
impl<'input> UnwindSafe for Export<'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