pub struct WhereIs<'source> {
pub where_token: Token<'source>,
pub expression: Option<Box<Expression<'source>>>,
pub is_token: Option<Token<'source>>,
pub binding: Option<Binding<'source>>,
pub semicolon_token: Option<Token<'source>>,
pub diagnostics: Diagnostics<'source>,
}Fields§
§where_token: Token<'source>§expression: Option<Box<Expression<'source>>>§is_token: Option<Token<'source>>§binding: Option<Binding<'source>>§semicolon_token: Option<Token<'source>>§diagnostics: Diagnostics<'source>Implementations§
Trait Implementations§
impl<'source> Eq for WhereIs<'source>
impl<'source> StructuralPartialEq for WhereIs<'source>
Auto Trait Implementations§
impl<'source> Freeze for WhereIs<'source>
impl<'source> RefUnwindSafe for WhereIs<'source>
impl<'source> Send for WhereIs<'source>
impl<'source> Sync for WhereIs<'source>
impl<'source> Unpin for WhereIs<'source>
impl<'source> UnsafeUnpin for WhereIs<'source>
impl<'source> UnwindSafe for WhereIs<'source>
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