pub struct ExternalSymbol {
pub library: String,
pub symbol: String,
pub is_stdlib: bool,
}Expand description
A symbol from an external library.
Fields§
§library: StringLibrary name.
symbol: StringSymbol name.
is_stdlib: boolIs from standard library.
Trait Implementations§
Source§impl Clone for ExternalSymbol
impl Clone for ExternalSymbol
Source§fn clone(&self) -> ExternalSymbol
fn clone(&self) -> ExternalSymbol
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 moreAuto Trait Implementations§
impl Freeze for ExternalSymbol
impl RefUnwindSafe for ExternalSymbol
impl Send for ExternalSymbol
impl Sync for ExternalSymbol
impl Unpin for ExternalSymbol
impl UnsafeUnpin for ExternalSymbol
impl UnwindSafe for ExternalSymbol
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