Struct fuc_engine::RemoveOp
source · pub struct RemoveOp<'a, I: Into<Cow<'a, Path>> + 'a, F: IntoIterator<Item = I>> { /* private fields */ }Implementations§
source§impl<'a, I: Into<Cow<'a, Path>> + 'a, F: IntoIterator<Item = I>> RemoveOp<'a, I, F>
impl<'a, I: Into<Cow<'a, Path>> + 'a, F: IntoIterator<Item = I>> RemoveOp<'a, I, F>
sourcepub fn builder() -> RemoveOpBuilder<'a, I, F, ((), (), (), ())>
pub fn builder() -> RemoveOpBuilder<'a, I, F, ((), (), (), ())>
Create a builder for building RemoveOp.
On the builder, call .files(...), .force(...)(optional), .preserve_root(...)(optional), ._marker(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of RemoveOp.
Trait Implementations§
Auto Trait Implementations§
impl<'a, I, F> Freeze for RemoveOp<'a, I, F>where
F: Freeze,
impl<'a, I, F> RefUnwindSafe for RemoveOp<'a, I, F>where
F: RefUnwindSafe,
I: RefUnwindSafe,
impl<'a, I, F> Send for RemoveOp<'a, I, F>
impl<'a, I, F> Sync for RemoveOp<'a, I, F>
impl<'a, I, F> Unpin for RemoveOp<'a, I, F>where
F: Unpin,
impl<'a, I, F> UnwindSafe for RemoveOp<'a, I, F>where
F: UnwindSafe,
I: RefUnwindSafe,
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