Skip to main content

RepairSource

Struct RepairSource 

Source
pub struct RepairSource { /* private fields */ }

Implementations§

Source§

impl RepairSource

Source

pub fn try_new( lint_scope: RepairLintScope, report_scope: LintScope, finding: LintSemanticFinding, general_snapshots: LintSnapshotReceipts, deep_snapshots: LintSnapshotReceipts, general_producer_receipt: LintProducerReceipt, deep_producer_receipt: LintProducerReceipt, agent_work_digest: LintDigest, ) -> Result<Self, RepairContractError>

Source

pub fn try_new_deterministic( lint_scope: RepairLintScope, report_scope: LintScope, check_id: String, deterministic_evidence: Vec<LintEvidenceRef>, general_snapshots: LintSnapshotReceipts, deep_snapshots: LintSnapshotReceipts, general_producer_receipt: LintProducerReceipt, deep_producer_receipt: LintProducerReceipt, ) -> Result<Self, RepairContractError>

Source

pub fn try_new_general_only_deterministic( lint_scope: RepairLintScope, report_scope: LintScope, check_id: String, deterministic_evidence: Vec<LintEvidenceRef>, general_snapshots: LintSnapshotReceipts, general_producer_receipt: LintProducerReceipt, ) -> Result<Self, RepairContractError>

Source

pub fn lint_scope(&self) -> &RepairLintScope

Source

pub fn report_scope(&self) -> &LintScope

Source

pub fn finding(&self) -> Option<&LintSemanticFinding>

Source

pub fn deterministic_evidence(&self) -> &[LintEvidenceRef]

Source

pub fn check_id(&self) -> &str

Source

pub fn general_snapshots(&self) -> &LintSnapshotReceipts

Source

pub fn deep_snapshots(&self) -> Option<&LintSnapshotReceipts>

Source

pub fn general_producer_receipt(&self) -> &LintProducerReceipt

Source

pub fn deep_producer_receipt(&self) -> Option<&LintProducerReceipt>

Source

pub fn agent_work_digest(&self) -> Option<&LintDigest>

Source

pub fn try_with_review_binding( self, review_binding: RepairReviewBinding, ) -> Result<Self, RepairContractError>

Source

pub const fn review_binding(&self) -> Option<&RepairReviewBinding>

Source

pub const fn is_general_only_deterministic(&self) -> bool

Trait Implementations§

Source§

impl Clone for RepairSource

Source§

fn clone(&self) -> RepairSource

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RepairSource

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for RepairSource

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for RepairSource

Source§

impl PartialEq for RepairSource

Source§

fn eq(&self, other: &RepairSource) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for RepairSource

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for RepairSource

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.