pub struct CapturePreview {
pub artifact: CaptureArtifact,
pub summary: RedactionSummary,
pub checklist: String,
}Expand description
Local preview for reviewing a capture before sharing.
Fields§
§artifact: CaptureArtifactRedacted artifact.
summary: RedactionSummaryRedaction summary.
checklist: StringFixture submission checklist.
Implementations§
Trait Implementations§
Source§impl Clone for CapturePreview
impl Clone for CapturePreview
Source§fn clone(&self) -> CapturePreview
fn clone(&self) -> CapturePreview
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CapturePreview
impl Debug for CapturePreview
Source§impl PartialEq for CapturePreview
impl PartialEq for CapturePreview
Source§fn eq(&self, other: &CapturePreview) -> bool
fn eq(&self, other: &CapturePreview) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CapturePreview
impl StructuralPartialEq for CapturePreview
Auto Trait Implementations§
impl Freeze for CapturePreview
impl RefUnwindSafe for CapturePreview
impl Send for CapturePreview
impl Sync for CapturePreview
impl Unpin for CapturePreview
impl UnsafeUnpin for CapturePreview
impl UnwindSafe for CapturePreview
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