pub struct Crate {
pub attrs: AttrVec,
pub items: Vec<P<Item>>,
pub spans: ModSpans,
pub id: NodeId,
pub is_placeholder: bool,
}
Fields
attrs: AttrVec
items: Vec<P<Item>>
spans: ModSpans
id: NodeId
Must be equal to CRATE_NODE_ID
after the crate root is expanded, but may hold
expansion placeholders or an unassigned value (DUMMY_NODE_ID
) before that.
is_placeholder: bool
Trait Implementations
sourceimpl DummyAstNode for Crate
impl DummyAstNode for Crate
sourceimpl HasAttrs for Crate
impl HasAttrs for Crate
sourceconst SUPPORTS_CUSTOM_INNER_ATTRS: bool = false
const SUPPORTS_CUSTOM_INNER_ATTRS: bool = false
This is
true
if this HasAttrs
might support ‘custom’ (proc-macro) inner
attributes. Attributes like #![cfg]
and #![cfg_attr]
are not
considered ‘custom’ attributes. Read morefn attrs(&self) -> &[Attribute]
fn visit_attrs(&mut self, f: impl FnOnce(&mut AttrVec))
Auto Trait Implementations
impl !RefUnwindSafe for Crate
impl !Send for Crate
impl !Sync for Crate
impl Unpin for Crate
impl !UnwindSafe for Crate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes