pub struct Subprog {
pub id: NodeId,
pub span: Span,
pub spec: SubprogSpec,
pub data: SubprogData,
}
Fields§
§id: NodeId
§span: Span
§spec: SubprogSpec
§data: SubprogData
Trait Implementations§
Source§impl HasSpan for Subprog
impl HasSpan for Subprog
Source§fn human_span(&self) -> Span
fn human_span(&self) -> Span
Obtain a span which can be used to refer to this node in error messages
presented to humans. This will generally be the name for things like
entities, processes, and variables. Defaults to return whatever
span()
returns.impl Eq for Subprog
impl StructuralPartialEq for Subprog
Auto Trait Implementations§
impl Freeze for Subprog
impl RefUnwindSafe for Subprog
impl Send for Subprog
impl Sync for Subprog
impl Unpin for Subprog
impl UnwindSafe for Subprog
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