pub struct EmptyStatement<'s> {
pub empty: Option<&'s Token<'s>>,
}Expand description
An empty statement.
Grammar: <empty>?
Fields§
§empty: Option<&'s Token<'s>>Trait Implementations§
Source§impl<'s> Clone for EmptyStatement<'s>
impl<'s> Clone for EmptyStatement<'s>
Source§fn clone(&self) -> EmptyStatement<'s>
fn clone(&self) -> EmptyStatement<'s>
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<'s> Freeze for EmptyStatement<'s>
impl<'s> RefUnwindSafe for EmptyStatement<'s>
impl<'s> Send for EmptyStatement<'s>
impl<'s> Sync for EmptyStatement<'s>
impl<'s> Unpin for EmptyStatement<'s>
impl<'s> UnwindSafe for EmptyStatement<'s>
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