[][src]Struct raptor::analysis::RefLocationSet

pub struct RefLocationSet<'f, V: 'f + Value> { /* fields omitted */ }

Methods

impl<'f, V: Value> RefLocationSet<'f, V>[src]

pub fn new() -> RefLocationSet<'f, V>[src]

pub fn insert(&mut self, location: RefProgramLocation<'f, V>)[src]

pub fn contains(&self, location: &RefProgramLocation<'f, V>) -> bool[src]

pub fn locations(&self) -> &HashSet<RefProgramLocation<'f, V>>[src]

pub fn remove(&mut self, location: &RefProgramLocation<'f, V>)[src]

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

Trait Implementations

impl<'f, V: Clone + 'f + Value> Clone for RefLocationSet<'f, V>[src]

impl<'f, V: Debug + 'f + Value> Debug for RefLocationSet<'f, V>[src]

impl<'f, V: PartialEq + 'f + Value> PartialEq<RefLocationSet<'f, V>> for RefLocationSet<'f, V>[src]

impl<'f, V: Value> PartialOrd<RefLocationSet<'f, V>> for RefLocationSet<'f, V>[src]

impl<'f, V: 'f + Value> StructuralPartialEq for RefLocationSet<'f, V>[src]

Auto Trait Implementations

impl<'f, V> RefUnwindSafe for RefLocationSet<'f, V> where
    V: RefUnwindSafe

impl<'f, V> Send for RefLocationSet<'f, V>

impl<'f, V> Sync for RefLocationSet<'f, V>

impl<'f, V> Unpin for RefLocationSet<'f, V>

impl<'f, V> UnwindSafe for RefLocationSet<'f, V> where
    V: RefUnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.