pub struct ExtendedHostFunctions<Base, Overlay> { /* private fields */ }
Expand description

A wrapper which merges two sets of host functions, and allows the second set to override the host functions from the first set.

Trait Implementations§

source§

impl<Base, Overlay> HostFunctions for ExtendedHostFunctions<Base, Overlay>
where Base: HostFunctions, Overlay: HostFunctions,

source§

fn host_functions() -> Vec<&'static dyn Function>

Returns the host functions Self provides.
source§

fn register_static<T>(registry: &mut T) -> Result<(), T::Error>

Statically registers the host functions.

Auto Trait Implementations§

§

impl<Base, Overlay> RefUnwindSafe for ExtendedHostFunctions<Base, Overlay>
where Base: RefUnwindSafe, Overlay: RefUnwindSafe,

§

impl<Base, Overlay> Send for ExtendedHostFunctions<Base, Overlay>
where Base: Send, Overlay: Send,

§

impl<Base, Overlay> Sync for ExtendedHostFunctions<Base, Overlay>
where Base: Sync, Overlay: Sync,

§

impl<Base, Overlay> Unpin for ExtendedHostFunctions<Base, Overlay>
where Base: Unpin, Overlay: Unpin,

§

impl<Base, Overlay> UnwindSafe for ExtendedHostFunctions<Base, Overlay>
where Base: UnwindSafe, Overlay: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> MaybeRefUnwindSafe for T
where T: RefUnwindSafe,