pub struct BootstrapStatus {
pub status: String,
pub progress: Option<f32>,
pub message: Option<String>,
pub extra: Value,
}
Expand description
Bootstrap status response
Fields§
§status: String
Current status of the bootstrap operation
progress: Option<f32>
Progress percentage (0.0-100.0) of the bootstrap operation
message: Option<String>
Status message or error description
extra: Value
Trait Implementations§
Source§impl Clone for BootstrapStatus
impl Clone for BootstrapStatus
Source§fn clone(&self) -> BootstrapStatus
fn clone(&self) -> BootstrapStatus
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 Debug for BootstrapStatus
impl Debug for BootstrapStatus
Source§impl<'de> Deserialize<'de> for BootstrapStatus
impl<'de> Deserialize<'de> for BootstrapStatus
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 BootstrapStatus
impl RefUnwindSafe for BootstrapStatus
impl Send for BootstrapStatus
impl Sync for BootstrapStatus
impl Unpin for BootstrapStatus
impl UnwindSafe for BootstrapStatus
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