Struct rustc_hir_typeck::gather_locals::Declaration
source · pub(crate) struct Declaration<'a> {
pub hir_id: HirId,
pub pat: &'a Pat<'a>,
pub ty: Option<&'a Ty<'a>>,
pub span: Span,
pub init: Option<&'a Expr<'a>>,
pub origin: DeclOrigin<'a>,
}
Expand description
A declaration is an abstraction of hir::Local and hir::Let.
It must have a hir_id, as this is how we connect gather_locals to the check functions.
Fields§
§hir_id: HirId
§pat: &'a Pat<'a>
§ty: Option<&'a Ty<'a>>
§span: Span
§init: Option<&'a Expr<'a>>
§origin: DeclOrigin<'a>
Trait Implementations§
source§impl<'a> From<&'a Let<'a>> for Declaration<'a>
impl<'a> From<&'a Let<'a>> for Declaration<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Declaration<'a>
impl<'a> !Send for Declaration<'a>
impl<'a> !Sync for Declaration<'a>
impl<'a> Unpin for Declaration<'a>
impl<'a> UnwindSafe for Declaration<'a>
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes