Skip to main content

Mutator

Struct Mutator 

Source
pub struct Mutator { /* private fields */ }
Expand description

Recursion control passed to a typed #[dispatch(mutate)] handler.

The dispatch object owns all pass state. Recursive operations take that object explicitly so Rust can safely reborrow the same &mut self for the child call.

Implementations§

Source§

impl Mutator

Source

pub fn current(&self) -> &MapValue

Complete borrowed value active at this callback.

Source

pub fn def_region_kind(&self) -> DefRegionKind

Definition-region state active at the callback’s current value.

Source

pub fn region(&self) -> DefRegionKind

Definition region active at the callback’s current value.

Source

pub fn mutate<D, T>(&mut self, dispatch: &mut D, value: &T) -> Result<Any>
where D: MutateDispatch, for<'x> AnyView<'x>: From<&'x T>,

Mutate a borrowed child through the same typed dispatch object.

Source

pub fn mutate_with<D, T>( &mut self, dispatch: &mut D, value: &T, def_region_kind: DefRegionKind, ) -> Result<Any>
where D: MutateDispatch, for<'x> AnyView<'x>: From<&'x T>,

Mutate a borrowed child under an explicit definition-region state.

Source

pub fn maybe_inplace_mutate<D, T>( &mut self, dispatch: &mut D, value: T, ) -> Result<Any>
where D: MutateDispatch, T: Into<Any>,

Mutate an owned child and permit reuse when it remains uniquely owned.

Source

pub fn maybe_inplace_mutate_with<D, T>( &mut self, dispatch: &mut D, value: T, def_region_kind: DefRegionKind, ) -> Result<Any>
where D: MutateDispatch, T: Into<Any>,

Mutate an owned child under an explicit definition-region state.

Source

pub fn default_mutate<D: MutateDispatch>( &mut self, dispatch: &mut D, ) -> Result<Any>

Apply default mutation to the callback’s current value.

Source

pub fn mutate_result<D, T>( &mut self, dispatch: &mut D, value: &T, ) -> Result<UnchangedOr<Any>>
where D: MutateDispatch, for<'x> AnyView<'x>: From<&'x T>,

Mutate a borrowed child while preserving an unchanged result.

Source

pub fn mutate_with_result<D, T>( &mut self, dispatch: &mut D, value: &T, kind: DefRegionKind, ) -> Result<UnchangedOr<Any>>
where D: MutateDispatch, for<'x> AnyView<'x>: From<&'x T>,

Mutate a borrowed child under an explicit region, preserving unchanged.

Source

pub fn default_mutate_result<D: MutateDispatch>( &mut self, dispatch: &mut D, ) -> Result<UnchangedOr<Any>>

Apply default mutation without materializing an unchanged original.

Source

pub fn var_remap_get<D: MutateDispatch>( &mut self, dispatch: &mut D, var: &MapValue, ) -> Result<Option<Any>>

Look up an invocation-local identity substitution.

Source

pub fn var_remap_set<D: MutateDispatch>( &mut self, dispatch: &mut D, var: &MapValue, mutated_value: &Any, ) -> Result<()>

Store an invocation-local identity substitution.

Auto Trait Implementations§

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>,

Source§

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>,

Source§

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.