pub struct LocalFileDestination { /* private fields */ }Expand description
Local file export destination
Implementations§
Trait Implementations§
Source§impl ExportDestination for LocalFileDestination
impl ExportDestination for LocalFileDestination
fn export_data<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
data: &'life1 [u8],
filename: &'life2 str,
_content_type: &'life3 str,
) -> Pin<Box<dyn Future<Output = RragResult<DestinationResult>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn destination_name(&self) -> &str
fn test_connection<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = RragResult<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for LocalFileDestination
impl RefUnwindSafe for LocalFileDestination
impl Send for LocalFileDestination
impl Sync for LocalFileDestination
impl Unpin for LocalFileDestination
impl UnwindSafe for LocalFileDestination
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