pub struct Report {
pub label: String,
pub desc: String,
pub state: State,
pub accums: Vec<Message>,
}
Expand description
The report status.
This structure is serialisable with the serde
feature.
Fields§
§label: String
The report’s label.
desc: String
The report’s description. Leave empty if not used.
state: State
The progress state.
accums: Vec<Message>
Accumulation messages.
Trait Implementations§
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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