pub struct WildcardTransition {
pub wc: Wildcard,
pub next: StateId,
pub synthetic: bool,
}Fields§
§wc: Wildcard§next: StateId§synthetic: boolSynthetic transitions stand in for a Term::GroupRef cycle
whose referenced group can’t be expanded inline. They admit
##any so the validator over-accepts the cycle’s content;
UPA cannot meaningfully clash against them.
Trait Implementations§
Source§impl Clone for WildcardTransition
impl Clone for WildcardTransition
Source§fn clone(&self) -> WildcardTransition
fn clone(&self) -> WildcardTransition
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 moreAuto Trait Implementations§
impl Freeze for WildcardTransition
impl RefUnwindSafe for WildcardTransition
impl Send for WildcardTransition
impl Sync for WildcardTransition
impl Unpin for WildcardTransition
impl UnsafeUnpin for WildcardTransition
impl UnwindSafe for WildcardTransition
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