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