[][src]Struct ra_ap_syntax::ast::FnPtrType

pub struct FnPtrType { /* fields omitted */ }

Implementations

impl FnPtrType[src]

pub fn const_token(&self) -> Option<SyntaxToken>[src]

pub fn async_token(&self) -> Option<SyntaxToken>[src]

pub fn unsafe_token(&self) -> Option<SyntaxToken>[src]

pub fn abi(&self) -> Option<Abi>[src]

pub fn fn_token(&self) -> Option<SyntaxToken>[src]

pub fn param_list(&self) -> Option<ParamList>[src]

pub fn ret_type(&self) -> Option<RetType>[src]

Trait Implementations

impl AstNode for FnPtrType[src]

impl Clone for FnPtrType[src]

impl Debug for FnPtrType[src]

impl Display for FnPtrType[src]

impl Eq for FnPtrType[src]

impl From<FnPtrType> for Type[src]

impl Hash for FnPtrType[src]

impl PartialEq<FnPtrType> for FnPtrType[src]

impl StructuralEq for FnPtrType[src]

impl StructuralPartialEq for FnPtrType[src]

Auto Trait Implementations

impl !RefUnwindSafe for FnPtrType

impl !Send for FnPtrType

impl !Sync for FnPtrType

impl Unpin for FnPtrType

impl !UnwindSafe for FnPtrType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<N> AstNodeEdit for N where
    N: AstNode + Clone
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.