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.
This type is available if Syn is built with the "full" feature.
Fields§
§attrs: Vec<Attribute>§vis: Visibility§extern_token: Extern§crate_token: Crate§ident: Ident§rename: Option<(As, Ident)>§semi_token: SemiTrait Implementations§
Source§impl Clone for ItemExternCrate
impl Clone for ItemExternCrate
Source§fn clone(&self) -> ItemExternCrate
fn clone(&self) -> ItemExternCrate
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 ItemExternCrate
impl Debug 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 Hash for ItemExternCrate
impl Hash for ItemExternCrate
Source§impl PartialEq for ItemExternCrate
impl PartialEq for ItemExternCrate
Source§impl Synom for ItemExternCrate
impl Synom for ItemExternCrate
Source§impl ToTokens for ItemExternCrate
impl ToTokens for ItemExternCrate
impl Eq for ItemExternCrate
impl StructuralPartialEq for ItemExternCrate
Auto Trait Implementations§
impl Freeze for ItemExternCrate
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> 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
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.