Struct tauri_utils::ProgressBarState
source · pub struct ProgressBarState {
pub status: Option<ProgressBarStatus>,
pub progress: Option<u64>,
pub unity_uri: Option<String>,
}
Expand description
Progress Bar State
Fields§
§status: Option<ProgressBarStatus>
The progress bar status.
progress: Option<u64>
The progress bar progress. This can be a value ranging from 0
to 100
unity_uri: Option<String>
The identifier for your app to communicate with the Unity desktop window manager Linux Only
Trait Implementations§
source§impl Debug for ProgressBarState
impl Debug for ProgressBarState
source§impl<'de> Deserialize<'de> for ProgressBarState
impl<'de> Deserialize<'de> for ProgressBarState
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 RefUnwindSafe for ProgressBarState
impl Send for ProgressBarState
impl Sync for ProgressBarState
impl Unpin for ProgressBarState
impl UnwindSafe for ProgressBarState
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