pub struct Declarator {
pub pointer: Option<Pointer>,
pub direct_declarator: DirectDeclarator,
pub span: Range<usize>,
}Expand description
Declarator
Fields§
§pointer: Option<Pointer>§direct_declarator: DirectDeclarator§span: Range<usize>Trait Implementations§
Source§impl Clone for Declarator
impl Clone for Declarator
Source§fn clone(&self) -> Declarator
fn clone(&self) -> Declarator
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 Declarator
impl Debug for Declarator
Source§impl PartialEq for Declarator
impl PartialEq for Declarator
impl StructuralPartialEq for Declarator
Auto Trait Implementations§
impl Freeze for Declarator
impl RefUnwindSafe for Declarator
impl Send for Declarator
impl Sync for Declarator
impl Unpin for Declarator
impl UnwindSafe for Declarator
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