#[repr(C)]pub struct Alias {
pub to: Box<Node>,
pub from: Box<Node>,
pub keyword_l: Loc,
pub expression_l: Loc,
}Expand description
Represents alias to from statement.
Fields§
§to: Box<Node>Target of the alias.
Sym("foo") node for alias :foo :bar
from: Box<Node>Source of the alias.
Sym("bar") node for alias :foo :bar
keyword_l: LocLocation of the alias keyword
alias foo bar
~~~~~expression_l: LocLocation of the full expression
alias foo bar
~~~~~~~~~~~~~Trait Implementations§
impl StructuralPartialEq for Alias
Auto Trait Implementations§
impl Freeze for Alias
impl RefUnwindSafe for Alias
impl Send for Alias
impl Sync for Alias
impl Unpin for Alias
impl UnwindSafe for Alias
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