Struct cpp_common::RustInvocation[][src]

pub struct RustInvocation {
    pub begin: Span,
    pub end: Span,
    pub id: Ident,
    pub return_type: Option<String>,
    pub arguments: Vec<(Ident, String)>,
}

Fields

Trait Implementations

impl Debug for RustInvocation
[src]

Formats the value using the given formatter. Read more

impl Parse for RustInvocation
[src]

Parse a rust! macro something looking like rust!(ident [foo : bar as "bar"] { /*...*/ })

Auto Trait Implementations