pub struct Exports(/* private fields */);Expand description
Values exported with neon::export
Implementations§
Source§impl Exports
impl Exports
Sourcepub fn export(self, cx: &mut ModuleContext<'_>) -> NeonResult<()>
pub fn export(self, cx: &mut ModuleContext<'_>) -> NeonResult<()>
Export all values exported with neon::export
#[neon::main]
fn main(mut cx: ModuleContext) -> NeonResult<()> {
neon::registered().export(&mut cx)?;
Ok(())
}For more control, iterate over exports.
#[neon::main]
fn main(mut cx: ModuleContext) -> NeonResult<()> {
for create in neon::registered() {
let (name, value) = create(&mut cx)?;
cx.export_value(name, value)?;
}
Ok(())
}Trait Implementations§
Source§impl IntoIterator for Exports
impl IntoIterator for Exports
Source§type Item = <<Exports as IntoIterator>::IntoIter as IntoIterator>::Item
type Item = <<Exports as IntoIterator>::IntoIter as IntoIterator>::Item
The type of the elements being iterated over.
Auto Trait Implementations§
impl Freeze for Exports
impl RefUnwindSafe for Exports
impl Send for Exports
impl Sync for Exports
impl Unpin for Exports
impl UnwindSafe for Exports
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more