pub struct CapsuleReview {
pub accepted: bool,
pub content_hash: String,
pub replay_content_hash: String,
pub preview_repos: Vec<String>,
pub failure_reasons: Vec<String>,
}Expand description
Deterministic review output for a Change Capsule.
Fields§
§accepted: boolWhether the capsule is accepted.
content_hash: StringOriginal cassette content hash.
replay_content_hash: StringReplay-computed content hash.
preview_repos: Vec<String>Repositories previewed before pin edits.
failure_reasons: Vec<String>Review failures.
Trait Implementations§
Source§impl Clone for CapsuleReview
impl Clone for CapsuleReview
Source§fn clone(&self) -> CapsuleReview
fn clone(&self) -> CapsuleReview
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 CapsuleReview
impl Debug for CapsuleReview
impl Eq for CapsuleReview
Source§impl PartialEq for CapsuleReview
impl PartialEq for CapsuleReview
Source§fn eq(&self, other: &CapsuleReview) -> bool
fn eq(&self, other: &CapsuleReview) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CapsuleReview
Auto Trait Implementations§
impl Freeze for CapsuleReview
impl RefUnwindSafe for CapsuleReview
impl Send for CapsuleReview
impl Sync for CapsuleReview
impl Unpin for CapsuleReview
impl UnsafeUnpin for CapsuleReview
impl UnwindSafe for CapsuleReview
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