pub struct VarDecl {
pub is_global: bool,
pub ty: TypeName,
pub declarators: Vec<Declarator>,
pub range: TextRange,
}Fields§
§is_global: bool§ty: TypeName§declarators: Vec<Declarator>§range: TextRangeTrait Implementations§
impl Eq for VarDecl
impl StructuralPartialEq for VarDecl
Auto Trait Implementations§
impl Freeze for VarDecl
impl RefUnwindSafe for VarDecl
impl Send for VarDecl
impl Sync for VarDecl
impl Unpin for VarDecl
impl UnsafeUnpin for VarDecl
impl UnwindSafe for VarDecl
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