[][src]Struct antlr_rust::atn_config_set::ATNConfigSet

pub struct ATNConfigSet { /* fields omitted */ }

Implementations

impl ATNConfigSet[src]

pub fn new_base_atnconfig_set(full_ctx: bool) -> ATNConfigSet[src]

pub fn new_ordered() -> ATNConfigSet[src]

pub fn add_cached(
    &mut self,
    config: Box<ATNConfig>,
    merge_cache: Option<&mut MergeCache>
) -> bool
[src]

pub fn add(&mut self, config: Box<ATNConfig>) -> bool[src]

pub fn get_items(&self) -> impl Iterator<Item = &ATNConfig>[src]

pub fn optimize_configs(&mut self, _interpreter: &dyn IATNSimulator)[src]

pub fn length(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn has_semantic_context(&self) -> bool[src]

pub fn set_has_semantic_context(&mut self, _v: bool)[src]

pub fn read_only(&self) -> bool[src]

pub fn set_read_only(&mut self, _read_only: bool)[src]

pub fn full_context(&self) -> bool[src]

pub fn get_alts(&self) -> BitSet[src]

pub fn get_unique_alt(&self) -> isize[src]

pub fn set_unique_alt(&mut self, _v: isize)[src]

pub fn get_dips_into_outer_context(&self) -> bool[src]

pub fn set_dips_into_outer_context(&mut self, _v: bool)[src]

Trait Implementations

impl Debug for ATNConfigSet[src]

impl Eq for ATNConfigSet[src]

impl Hash for ATNConfigSet[src]

impl PartialEq<ATNConfigSet> for ATNConfigSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.