pub struct DesktopSummaryBatchStatusResponse {
pub state: DesktopSummaryBatchState,
pub processed_sessions: u32,
pub total_sessions: u32,
pub failed_sessions: u32,
pub message: Option<String>,
pub started_at: Option<String>,
pub finished_at: Option<String>,
}Fields§
§state: DesktopSummaryBatchState§processed_sessions: u32§total_sessions: u32§failed_sessions: u32§message: Option<String>§started_at: Option<String>§finished_at: Option<String>Trait Implementations§
Source§impl Clone for DesktopSummaryBatchStatusResponse
impl Clone for DesktopSummaryBatchStatusResponse
Source§fn clone(&self) -> DesktopSummaryBatchStatusResponse
fn clone(&self) -> DesktopSummaryBatchStatusResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DesktopSummaryBatchStatusResponse
impl<'de> Deserialize<'de> for DesktopSummaryBatchStatusResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DesktopSummaryBatchStatusResponse
impl RefUnwindSafe for DesktopSummaryBatchStatusResponse
impl Send for DesktopSummaryBatchStatusResponse
impl Sync for DesktopSummaryBatchStatusResponse
impl Unpin for DesktopSummaryBatchStatusResponse
impl UnsafeUnpin for DesktopSummaryBatchStatusResponse
impl UnwindSafe for DesktopSummaryBatchStatusResponse
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