pub struct ExportCoordinator { /* private fields */ }
Expand description
Export coordinator - unified export interface with configuration management
Implementations§
Source§impl ExportCoordinator
impl ExportCoordinator
Sourcepub fn new(config: ExportConfig) -> Self
pub fn new(config: ExportConfig) -> Self
Create new export coordinator with configuration
Sourcepub fn new_auto_sized(data_size: usize) -> Self
pub fn new_auto_sized(data_size: usize) -> Self
Create coordinator with automatic configuration based on data size
Sourcepub async fn export<P: AsRef<Path>>(
&self,
output_path: P,
) -> TrackingResult<ExportOutcome>
pub async fn export<P: AsRef<Path>>( &self, output_path: P, ) -> TrackingResult<ExportOutcome>
Execute export with current configuration
Sourcepub fn config(&self) -> &ExportConfig
pub fn config(&self) -> &ExportConfig
Get current configuration
Sourcepub fn update_config(
&mut self,
config: ExportConfig,
data_size: Option<usize>,
) -> Vec<String>
pub fn update_config( &mut self, config: ExportConfig, data_size: Option<usize>, ) -> Vec<String>
Update configuration with validation and optimization
Sourcepub fn mode_manager(&self) -> &ExportModeManager
pub fn mode_manager(&self) -> &ExportModeManager
Get mode manager for advanced configuration
Auto Trait Implementations§
impl Freeze for ExportCoordinator
impl RefUnwindSafe for ExportCoordinator
impl Send for ExportCoordinator
impl Sync for ExportCoordinator
impl Unpin for ExportCoordinator
impl UnwindSafe for ExportCoordinator
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more