pub struct Seq {
pub parent: Option<NodeId>,
pub items: Vec<NodeId>,
}Expand description
An ordered run of nodes with an optional owning node.
Fields§
§parent: Option<NodeId>The node that owns this sequence, or None for the root sequence.
items: Vec<NodeId>The ordered nodes stored in this sequence.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Seq
impl RefUnwindSafe for Seq
impl Send for Seq
impl Sync for Seq
impl Unpin for Seq
impl UnsafeUnpin for Seq
impl UnwindSafe for Seq
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