pub struct KeywordDecl {
pub name: String,
pub by_reference: bool,
pub location: Location,
}Expand description
Keyword declarations in function/procedure definitions
Fields§
§name: String§by_reference: bool§location: LocationTrait Implementations§
Source§impl Clone for KeywordDecl
impl Clone for KeywordDecl
Source§fn clone(&self) -> KeywordDecl
fn clone(&self) -> KeywordDecl
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 moreSource§impl Debug for KeywordDecl
impl Debug for KeywordDecl
Source§impl PartialEq for KeywordDecl
impl PartialEq for KeywordDecl
impl StructuralPartialEq for KeywordDecl
Auto Trait Implementations§
impl Freeze for KeywordDecl
impl RefUnwindSafe for KeywordDecl
impl Send for KeywordDecl
impl Sync for KeywordDecl
impl Unpin for KeywordDecl
impl UnwindSafe for KeywordDecl
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