pub struct GaiaImport {
pub library: String,
pub symbol: String,
}Expand description
External import entry representing a symbol from an external library.
Fields§
§library: StringThe name of the external library.
symbol: StringThe symbol name to import from the library.
Trait Implementations§
Source§impl Clone for GaiaImport
impl Clone for GaiaImport
Source§fn clone(&self) -> GaiaImport
fn clone(&self) -> GaiaImport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GaiaImport
impl Debug for GaiaImport
Source§impl<'de> Deserialize<'de> for GaiaImport
impl<'de> Deserialize<'de> for GaiaImport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for GaiaImport
impl Hash for GaiaImport
Source§impl PartialEq for GaiaImport
impl PartialEq for GaiaImport
Source§impl Serialize for GaiaImport
impl Serialize for GaiaImport
impl Eq for GaiaImport
impl StructuralPartialEq for GaiaImport
Auto Trait Implementations§
impl Freeze for GaiaImport
impl RefUnwindSafe for GaiaImport
impl Send for GaiaImport
impl Sync for GaiaImport
impl Unpin for GaiaImport
impl UnsafeUnpin for GaiaImport
impl UnwindSafe for GaiaImport
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