pub struct Work<'a> { /* private fields */ }Implementations§
Source§impl<'a> Work<'a>
impl<'a> Work<'a>
pub fn echo( self, target: impl Into<String>, ) -> Result<Work<'a>, Box<dyn Error + Send + Sync>>
pub fn copy( self, target: impl Into<String>, ) -> Result<Work<'a>, Box<dyn Error + Send + Sync>>
pub fn move( self, target: impl Into<String>, ) -> Result<Work<'a>, Box<dyn Error + Send + Sync>>
Auto Trait Implementations§
impl<'a> Freeze for Work<'a>
impl<'a> !RefUnwindSafe for Work<'a>
impl<'a> Send for Work<'a>
impl<'a> !Sync for Work<'a>
impl<'a> Unpin for Work<'a>
impl<'a> !UnwindSafe for Work<'a>
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