Skip to main content

StagingEvent

Enum StagingEvent 

Source
pub enum StagingEvent {
    FileStaged {
        upload_id: String,
        file_name: String,
    },
    UploadStarted {
        upload_id: String,
    },
    UploadProgress {
        upload_id: String,
        bytes_uploaded: u64,
        total_bytes: u64,
    },
    UploadCompleted {
        upload_id: String,
        destination_path: String,
    },
    ConflictDetected {
        upload_id: String,
        conflict_type: ConflictType,
    },
    UploadFailed {
        upload_id: String,
        error: String,
    },
    QueueCleared {
        files_removed: u32,
    },
    NetworkStatusChanged {
        available: bool,
    },
    SyncStarted,
    SyncCompleted {
        files_uploaded: u32,
        files_failed: u32,
    },
}
Expand description

Event emitted when staging queue state changes.

Variants§

§

FileStaged

A file was added to the staging queue.

Fields

§upload_id: String

ID of the staged upload.

§file_name: String

File name.

§

UploadStarted

Upload started for a staged file.

Fields

§upload_id: String

ID of the staged upload.

§

UploadProgress

Upload progress update.

Fields

§upload_id: String

ID of the staged upload.

§bytes_uploaded: u64

Bytes uploaded so far.

§total_bytes: u64

Total bytes.

§

UploadCompleted

Upload completed successfully.

Fields

§upload_id: String

ID of the staged upload.

§destination_path: String

Final destination path.

§

ConflictDetected

Conflict detected during upload.

Fields

§upload_id: String

ID of the staged upload.

§conflict_type: ConflictType

Type of conflict.

§

UploadFailed

Upload failed.

Fields

§upload_id: String

ID of the staged upload.

§error: String

Error message.

§

QueueCleared

Staging queue cleared.

Fields

§files_removed: u32

Number of files removed.

§

NetworkStatusChanged

Network connectivity changed.

Fields

§available: bool

Whether network is now available.

§

SyncStarted

Sync started.

§

SyncCompleted

Sync completed.

Fields

§files_uploaded: u32

Number of files uploaded.

§files_failed: u32

Number of files failed.

Trait Implementations§

Source§

impl Clone for StagingEvent

Source§

fn clone(&self) -> StagingEvent

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StagingEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for StagingEvent

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for StagingEvent

Source§

fn eq(&self, other: &StagingEvent) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for StagingEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for StagingEvent

Source§

impl StructuralPartialEq for StagingEvent

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,