Struct syn::ItemExternCrate
source · pub struct ItemExternCrate {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub extern_token: Extern,
pub crate_token: Crate,
pub ident: Ident,
pub rename: Option<(As, Ident)>,
pub semi_token: Semi,
}
Expand description
An extern crate
item: extern crate serde
.
Fields§
§attrs: Vec<Attribute>
§vis: Visibility
§extern_token: Extern
§crate_token: Crate
§ident: Ident
§rename: Option<(As, Ident)>
§semi_token: Semi
Trait Implementations§
source§impl Clone for ItemExternCrate
impl Clone for ItemExternCrate
source§impl From<ItemExternCrate> for Item
impl From<ItemExternCrate> for Item
source§fn from(e: ItemExternCrate) -> Item
fn from(e: ItemExternCrate) -> Item
Converts to this type from the input type.
source§impl Parse for ItemExternCrate
impl Parse for ItemExternCrate
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl ToTokens for ItemExternCrate
impl ToTokens for ItemExternCrate
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl RefUnwindSafe for ItemExternCrate
impl !Send for ItemExternCrate
impl !Sync for ItemExternCrate
impl Unpin for ItemExternCrate
impl UnwindSafe for ItemExternCrate
Blanket Implementations§
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.