Struct dot_parser::ast::StmtList
source · pub struct StmtList<A> {
pub stmts: Vec<Stmt<A>>,
}
Expand description
A list of statements. This corresponds to the stmt_list
non-terminal of the
grammar.
Fields§
§stmts: Vec<Stmt<A>>
The list of statements.
Trait Implementations§
source§impl<A> FromIterator<Stmt<A>> for StmtList<A>
impl<A> FromIterator<Stmt<A>> for StmtList<A>
source§impl<'a, A> IntoIterator for &'a StmtList<A>
impl<'a, A> IntoIterator for &'a StmtList<A>
source§impl<A> IntoIterator for StmtList<A>
impl<A> IntoIterator for StmtList<A>
source§impl<A: Ord> Ord for StmtList<A>
impl<A: Ord> Ord for StmtList<A>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<A: PartialEq> PartialEq for StmtList<A>
impl<A: PartialEq> PartialEq for StmtList<A>
source§impl<A: PartialOrd> PartialOrd for StmtList<A>
impl<A: PartialOrd> PartialOrd for StmtList<A>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<'a, A> TryFrom<Pair<'a, Rule>> for StmtList<A>
impl<'a, A> TryFrom<Pair<'a, Rule>> for StmtList<A>
§type Error = ParseError<'a>
type Error = ParseError<'a>
The type returned in the event of a conversion error.
impl<A: Eq> Eq for StmtList<A>
impl<A> StructuralPartialEq for StmtList<A>
Auto Trait Implementations§
impl<A> Freeze for StmtList<A>
impl<A> RefUnwindSafe for StmtList<A>where
A: RefUnwindSafe,
impl<A> Send for StmtList<A>where
A: Send,
impl<A> Sync for StmtList<A>where
A: Sync,
impl<A> Unpin for StmtList<A>where
A: Unpin,
impl<A> UnwindSafe for StmtList<A>where
A: UnwindSafe,
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more