pub struct AbstractDeclarator {
pub pointer: Option<Pointer>,
pub direct_abstract_declarator: Option<Box<DirectAbstractDeclarator>>,
pub span: Range<usize>,
}Expand description
Abstract declarator
Fields§
§pointer: Option<Pointer>§direct_abstract_declarator: Option<Box<DirectAbstractDeclarator>>§span: Range<usize>Trait Implementations§
Source§impl Clone for AbstractDeclarator
impl Clone for AbstractDeclarator
Source§fn clone(&self) -> AbstractDeclarator
fn clone(&self) -> AbstractDeclarator
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 AbstractDeclarator
impl Debug for AbstractDeclarator
Source§impl<'de> Deserialize<'de> for AbstractDeclarator
impl<'de> Deserialize<'de> for AbstractDeclarator
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AbstractDeclarator
impl PartialEq for AbstractDeclarator
Source§impl Serialize for AbstractDeclarator
impl Serialize for AbstractDeclarator
impl StructuralPartialEq for AbstractDeclarator
Auto Trait Implementations§
impl Freeze for AbstractDeclarator
impl RefUnwindSafe for AbstractDeclarator
impl Send for AbstractDeclarator
impl Sync for AbstractDeclarator
impl Unpin for AbstractDeclarator
impl UnwindSafe for AbstractDeclarator
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