pub struct MayaTopLevelFacts {
pub items: Vec<MayaTopLevelItem>,
}Expand description
Top-level Maya facts collected from a full parse.
The result is intentionally coarse-grained: each top-level item is either a proc, a command-style statement promoted into Maya-aware form, or an unclassified statement span.
Fields§
§items: Vec<MayaTopLevelItem>Trait Implementations§
Source§impl Clone for MayaTopLevelFacts
impl Clone for MayaTopLevelFacts
Source§fn clone(&self) -> MayaTopLevelFacts
fn clone(&self) -> MayaTopLevelFacts
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 MayaTopLevelFacts
impl Debug for MayaTopLevelFacts
Source§impl Default for MayaTopLevelFacts
impl Default for MayaTopLevelFacts
Source§fn default() -> MayaTopLevelFacts
fn default() -> MayaTopLevelFacts
Returns the “default value” for a type. Read more
Source§impl PartialEq for MayaTopLevelFacts
impl PartialEq for MayaTopLevelFacts
impl Eq for MayaTopLevelFacts
impl StructuralPartialEq for MayaTopLevelFacts
Auto Trait Implementations§
impl Freeze for MayaTopLevelFacts
impl RefUnwindSafe for MayaTopLevelFacts
impl Send for MayaTopLevelFacts
impl Sync for MayaTopLevelFacts
impl Unpin for MayaTopLevelFacts
impl UnsafeUnpin for MayaTopLevelFacts
impl UnwindSafe for MayaTopLevelFacts
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