pub struct ExtractedImport {
pub path: String,
pub imported_symbols: Vec<String>,
}Expand description
Extracted import statement
Fields§
§path: String§imported_symbols: Vec<String>Trait Implementations§
Source§impl Clone for ExtractedImport
impl Clone for ExtractedImport
Source§fn clone(&self) -> ExtractedImport
fn clone(&self) -> ExtractedImport
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 moreAuto Trait Implementations§
impl Freeze for ExtractedImport
impl RefUnwindSafe for ExtractedImport
impl Send for ExtractedImport
impl Sync for ExtractedImport
impl Unpin for ExtractedImport
impl UnsafeUnpin for ExtractedImport
impl UnwindSafe for ExtractedImport
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