#[repr(C)]pub struct FizzyImportedGlobal {
pub module: *const c_char,
pub name: *const c_char,
pub external_global: FizzyExternalGlobal,
}Expand description
Imported global.
Fields§
§module: *const c_charModule name. NULL-terminated string. Cannot be NULL.
name: *const c_charFunction name. NULL-terminated string. Cannot be NULL.
external_global: FizzyExternalGlobalExternal global, defining its value type, and a pointer to value.
Trait Implementations§
Source§impl Clone for FizzyImportedGlobal
impl Clone for FizzyImportedGlobal
Source§fn clone(&self) -> FizzyImportedGlobal
fn clone(&self) -> FizzyImportedGlobal
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FizzyImportedGlobal
Source§impl Debug for FizzyImportedGlobal
impl Debug for FizzyImportedGlobal
Auto Trait Implementations§
impl !Send for FizzyImportedGlobal
impl !Sync for FizzyImportedGlobal
impl Freeze for FizzyImportedGlobal
impl RefUnwindSafe for FizzyImportedGlobal
impl Unpin for FizzyImportedGlobal
impl UnsafeUnpin for FizzyImportedGlobal
impl UnwindSafe for FizzyImportedGlobal
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