struct RedactedStateExport {Show 17 fields
status: String,
paused: bool,
pause_reason: Option<String>,
watched_folder_count: usize,
active_server_route: Option<String>,
queue_size: usize,
total_queued: usize,
processed_count: usize,
failed_count: usize,
progress: u8,
last_successful_sync_at: Option<f64>,
current_file: Option<String>,
last_completed_file: Option<String>,
last_error: Option<String>,
last_error_guidance: Option<String>,
diagnostics_exports: usize,
recent_events: Vec<RedactedQueueEvent>,
}Expand description
Redacted snapshot of persistent app context status.
Fields§
§status: StringApp status label.
paused: boolTrue if transfers are currently paused.
pause_reason: Option<String>User or environmental cause of pause.
watched_folder_count: usizeNumber of directories being watched.
active_server_route: Option<String>Connection route label.
queue_size: usizeNumber of active items in transmission queue.
total_queued: usizeTotal number of items queued this session.
processed_count: usizeNumber of successfully processed items.
failed_count: usizeNumber of items that failed transmission.
progress: u8Percent progress of active batch.
last_successful_sync_at: Option<f64>Unix timestamp of last successful remote sync.
current_file: Option<String>File currently being processed.
last_completed_file: Option<String>Last processed file.
last_error: Option<String>Last recorded network or logic error string.
last_error_guidance: Option<String>Troubleshooting instructions for the last error.
diagnostics_exports: usizeTotal count of diagnostic exports generated.
recent_events: Vec<RedactedQueueEvent>Log of recent queue event summaries.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RedactedStateExport
impl RefUnwindSafe for RedactedStateExport
impl Send for RedactedStateExport
impl Sync for RedactedStateExport
impl Unpin for RedactedStateExport
impl UnsafeUnpin for RedactedStateExport
impl UnwindSafe for RedactedStateExport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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