pub struct Walk<D> { /* private fields */ }
Expand description
An iterator like type that walks along a path by arbitrary steps.
Implementations§
source§impl<D> Walk<TransformCommands<D>>
impl<D> Walk<TransformCommands<D>>
sourcepub fn with_transform(
data: impl PathData<Commands = D>,
transform: Transform,
) -> Self
pub fn with_transform( data: impl PathData<Commands = D>, transform: Transform, ) -> Self
Creates a new iterator like type that steps along a transformed path by abitrary distances.
source§impl<D> Walk<D>
impl<D> Walk<D>
Auto Trait Implementations§
impl<D> !Freeze for Walk<D>
impl<D> !RefUnwindSafe for Walk<D>
impl<D> Send for Walk<D>where
D: Send,
impl<D> !Sync for Walk<D>
impl<D> Unpin for Walk<D>where
D: Unpin,
impl<D> UnwindSafe for Walk<D>where
D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more