pub struct ImportedSymbol {
pub unit_id: u64,
pub import_path: String,
}Expand description
A symbol resolved through an import.
Fields§
§unit_id: u64The import unit temp_id.
import_path: StringThe import path string.
Trait Implementations§
Source§impl Clone for ImportedSymbol
impl Clone for ImportedSymbol
Source§fn clone(&self) -> ImportedSymbol
fn clone(&self) -> ImportedSymbol
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 ImportedSymbol
impl RefUnwindSafe for ImportedSymbol
impl Send for ImportedSymbol
impl Sync for ImportedSymbol
impl Unpin for ImportedSymbol
impl UnsafeUnpin for ImportedSymbol
impl UnwindSafe for ImportedSymbol
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