pub enum SegmentKind {
Header,
Knot,
TopLevelStitch,
}Expand description
What a Segment covers.
Variants§
Header
Everything before the first knot/stitch header: declarations, includes, root weave content. Always present (possibly empty).
Knot
One top-level knot (== name …), doc block included.
TopLevelStitch
One top-level stitch (= name, before any knot), doc block
included — lowering promotes these to knots.
Trait Implementations§
Source§impl Clone for SegmentKind
impl Clone for SegmentKind
Source§fn clone(&self) -> SegmentKind
fn clone(&self) -> SegmentKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SegmentKind
Source§impl Debug for SegmentKind
impl Debug for SegmentKind
impl Eq for SegmentKind
Source§impl Hash for SegmentKind
impl Hash for SegmentKind
Source§impl PartialEq for SegmentKind
impl PartialEq for SegmentKind
impl StructuralPartialEq for SegmentKind
Auto Trait Implementations§
impl Freeze for SegmentKind
impl RefUnwindSafe for SegmentKind
impl Send for SegmentKind
impl Sync for SegmentKind
impl Unpin for SegmentKind
impl UnsafeUnpin for SegmentKind
impl UnwindSafe for SegmentKind
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