Struct spirt::func_at::FuncAtMut

source ·
pub struct FuncAtMut<'a, P: Copy> {
    pub control_regions: &'a mut EntityDefs<ControlRegion>,
    pub control_nodes: &'a mut EntityDefs<ControlNode>,
    pub data_insts: &'a mut EntityDefs<DataInst>,
    pub position: P,
}
Expand description

Mutable traversal (i.e. transforming) helper for intra-function entities.

The point/position type P should be an entity or a shallow entity wrapper (e.g. EntityList<ControlNode>).

Fields§

§control_regions: &'a mut EntityDefs<ControlRegion>§control_nodes: &'a mut EntityDefs<ControlNode>§data_insts: &'a mut EntityDefs<DataInst>§position: P

Implementations§

source§

impl<'a, P: Copy> FuncAtMut<'a, P>

source

pub fn reborrow(&mut self) -> FuncAtMut<'_, P>

Emulate a “reborrow”, which is automatic only for &mut types.

source

pub fn at<P2: Copy>(self, new_position: P2) -> FuncAtMut<'a, P2>

Reposition to new_position.

source

pub fn freeze(self) -> FuncAt<'a, P>

Demote to a FuncAt, with the same position.

source§

impl<'a> FuncAtMut<'a, ControlRegion>

source

pub fn def(self) -> &'a mut ControlRegionDef

source

pub fn at_children(self) -> FuncAtMut<'a, EntityList<ControlNode>>

source§

impl<'a> FuncAtMut<'a, EntityList<ControlNode>>

source§

impl FuncAtMut<'_, EntityListIter<ControlNode>>

source

pub fn next(&mut self) -> Option<FuncAtMut<'_, ControlNode>>

source§

impl<'a> FuncAtMut<'a, ControlNode>

source

pub fn def(self) -> &'a mut ControlNodeDef

source§

impl<'a> FuncAtMut<'a, EntityList<DataInst>>

source§

impl FuncAtMut<'_, EntityListIter<DataInst>>

source

pub fn next(&mut self) -> Option<FuncAtMut<'_, DataInst>>

source§

impl<'a> FuncAtMut<'a, DataInst>

source

pub fn def(self) -> &'a mut DataInstDef

source§

impl FuncAtMut<'_, ControlNode>

source

fn child_regions(&mut self) -> &mut [ControlRegion]

Trait Implementations§

Auto Trait Implementations§

§

impl<'a, P> RefUnwindSafe for FuncAtMut<'a, P>
where P: RefUnwindSafe,

§

impl<'a, P> Send for FuncAtMut<'a, P>
where P: Send,

§

impl<'a, P> Sync for FuncAtMut<'a, P>
where P: Sync,

§

impl<'a, P> Unpin for FuncAtMut<'a, P>
where P: Unpin,

§

impl<'a, P> !UnwindSafe for FuncAtMut<'a, P>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.