pub struct ProcedureEntry {
pub name: Identifier,
pub local_table: LocalTable,
pub parameters: Vec<VariableEntry>,
pub range: Range<usize>,
pub doc: Option<String>,
}Fields§
§name: Identifier§local_table: LocalTable§parameters: Vec<VariableEntry>§range: Range<usize>§doc: Option<String>Trait Implementations§
Source§impl Clone for ProcedureEntry
impl Clone for ProcedureEntry
Source§fn clone(&self) -> ProcedureEntry
fn clone(&self) -> ProcedureEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProcedureEntry
impl Debug for ProcedureEntry
Source§impl Display for ProcedureEntry
impl Display for ProcedureEntry
Source§impl PartialEq for ProcedureEntry
impl PartialEq for ProcedureEntry
Source§fn eq(&self, other: &ProcedureEntry) -> bool
fn eq(&self, other: &ProcedureEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ProcedureEntry
impl StructuralPartialEq for ProcedureEntry
Auto Trait Implementations§
impl Freeze for ProcedureEntry
impl RefUnwindSafe for ProcedureEntry
impl Send for ProcedureEntry
impl Sync for ProcedureEntry
impl Unpin for ProcedureEntry
impl UnsafeUnpin for ProcedureEntry
impl UnwindSafe for ProcedureEntry
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