pub struct GlobalVariable {
pub decl_token: Token,
pub identifier: Token,
pub colon: Token,
pub type_token: TypeHint,
pub equals_token: Token,
pub initializer: Expression,
pub semicolon: Token,
}Fields§
§decl_token: Token§identifier: Token§colon: Token§type_token: TypeHint§equals_token: Token§initializer: Expression§semicolon: TokenImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlobalVariable
impl RefUnwindSafe for GlobalVariable
impl Send for GlobalVariable
impl Sync for GlobalVariable
impl Unpin for GlobalVariable
impl UnwindSafe for GlobalVariable
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