pub enum InternalAttr {
DEAD,
NODE_ID,
BEGIN_ID,
END_ID,
ST_ID,
LOOP,
START,
END,
}
Expand description
Internal attributes that cannot be parsed back from the IL.
Variants§
Trait Implementations§
Source§impl AsRef<str> for InternalAttr
impl AsRef<str> for InternalAttr
Source§impl Clone for InternalAttr
impl Clone for InternalAttr
Source§fn clone(&self) -> InternalAttr
fn clone(&self) -> InternalAttr
Returns a copy 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 InternalAttr
impl Debug for InternalAttr
Source§impl From<InternalAttr> for Attribute
impl From<InternalAttr> for Attribute
Source§fn from(attr: InternalAttr) -> Attribute
fn from(attr: InternalAttr) -> Attribute
Converts to this type from the input type.
Source§impl Hash for InternalAttr
impl Hash for InternalAttr
Source§impl PartialEq for InternalAttr
impl PartialEq for InternalAttr
impl Copy for InternalAttr
impl Eq for InternalAttr
impl StructuralPartialEq for InternalAttr
Auto Trait Implementations§
impl Freeze for InternalAttr
impl RefUnwindSafe for InternalAttr
impl Send for InternalAttr
impl Sync for InternalAttr
impl Unpin for InternalAttr
impl UnwindSafe for InternalAttr
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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