Enum dioxus_core::changelist::MoveTo [−][src]
Variants
Move from the current node up to its parent.
Child(u32)Move to the current node’s n^th child.
ReverseChild(u32)Move to the current node’s n^th from last child.
Sibling(u32)Move to the n^th sibling. Not relative from the current location. Absolute indexed within all of the current siblings.
ReverseSibling(u32)Move to the n^th from last sibling. Not relative from the current location. Absolute indexed within all of the current siblings.
TempChild(u32)Move down to the given saved temporary child.
Trait Implementations
impl Clone for MoveTo[src]
impl Copy for MoveTo[src]
impl Debug for MoveTo[src]
impl Eq for MoveTo[src]
impl PartialEq<MoveTo> for MoveTo[src]
impl StructuralEq for MoveTo[src]
impl StructuralPartialEq for MoveTo[src]
Auto Trait Implementations
impl RefUnwindSafe for MoveTo
impl Send for MoveTo
impl Sync for MoveTo
impl Unpin for MoveTo
impl UnwindSafe for MoveTo
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Erased for T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,