Struct DraftProgress
pub struct DraftProgress {
pub kind: DraftProgressKind,
pub text: String,
}Expand description
Rendered draft-progress text paired with its semantic origin.
Fields§
§kind: DraftProgressKindSemantic source retained independently from the display string.
text: StringChannel-ready display text after redaction.
Implementations§
Trait Implementations§
Source§impl Clone for DraftProgress
impl Clone for DraftProgress
Source§fn clone(&self) -> DraftProgress
fn clone(&self) -> DraftProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DraftProgress
impl Debug for DraftProgress
impl Eq for DraftProgress
Source§impl PartialEq for DraftProgress
impl PartialEq for DraftProgress
impl StructuralPartialEq for DraftProgress
Auto Trait Implementations§
impl Freeze for DraftProgress
impl RefUnwindSafe for DraftProgress
impl Send for DraftProgress
impl Sync for DraftProgress
impl Unpin for DraftProgress
impl UnsafeUnpin for DraftProgress
impl UnwindSafe for DraftProgress
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