[][src]Struct rain_lang::graph::region::RegionData

pub struct RegionData {
    pub parent: WeakRegion,
    pub depth: usize,
    pub params: RwLock<Parameters>,
    // some fields omitted
}

The data defining a region

Fields

parent: WeakRegion

The parent scope of this region

depth: usize

The depth of this region

params: RwLock<Parameters>

The parameters of a region

Methods

impl RegionData[src]

pub fn params(&self) -> RwLockReadGuard<Parameters>[src]

Get the parameters of a region

pub fn params_mut(&self) -> RwLockWriteGuard<Parameters>[src]

Mutably get the parameters of a region

pub fn add_param(&self, desc: ParameterDesc) -> (usize, ValId)[src]

Add a parameter to this region, get the parameter back along with its index

pub fn add_with_ty(&self, ty: ValId) -> (usize, ValId)[src]

Add a parameter to this region with a given type, get the parameter back

pub fn this(&self) -> WeakRegion[src]

Get the this pointer of this region

Trait Implementations

impl Debug for RegionData[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,