Trait AstStorageClassSpecifierOption

pub trait AstStorageClassSpecifierOption {
    // Required methods
    fn is_static(&self) -> bool;
    fn is_extern(&self) -> bool;
    fn is_typedef(&self) -> bool;
}

Required Methods§

fn is_static(&self) -> bool

fn is_extern(&self) -> bool

fn is_typedef(&self) -> bool

Implementations on Foreign Types§

§

impl AstStorageClassSpecifierOption for Option<AstStorageClassSpecifier>

§

fn is_static(&self) -> bool

Is this storage class specifier ‘static’?

§

fn is_extern(&self) -> bool

Is this storage class specifier ‘extern’?

§

fn is_typedef(&self) -> bool

Is this storage class specifier ‘typedef’?

Implementors§