pub struct CaptureReviewBundle {
pub preview: CapturePreview,
pub repair_hints: String,
pub catalog_entry: String,
}Expand description
Review bundle combining capture preview, repair hints, and catalog guidance.
Fields§
§preview: CapturePreviewLocal capture preview.
repair_hints: StringOptional serialized repair recipe or review hints.
catalog_entry: StringSuggested coverage catalog entry.
Implementations§
Trait Implementations§
Source§impl Clone for CaptureReviewBundle
impl Clone for CaptureReviewBundle
Source§fn clone(&self) -> CaptureReviewBundle
fn clone(&self) -> CaptureReviewBundle
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 CaptureReviewBundle
impl Debug for CaptureReviewBundle
Source§impl PartialEq for CaptureReviewBundle
impl PartialEq for CaptureReviewBundle
Source§fn eq(&self, other: &CaptureReviewBundle) -> bool
fn eq(&self, other: &CaptureReviewBundle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CaptureReviewBundle
impl StructuralPartialEq for CaptureReviewBundle
Auto Trait Implementations§
impl Freeze for CaptureReviewBundle
impl RefUnwindSafe for CaptureReviewBundle
impl Send for CaptureReviewBundle
impl Sync for CaptureReviewBundle
impl Unpin for CaptureReviewBundle
impl UnsafeUnpin for CaptureReviewBundle
impl UnwindSafe for CaptureReviewBundle
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