pub struct AttributedRunResult {
pub triples: Vec<AttributionTriple>,
pub check_result: CheckResult,
pub run_hash: String,
}Fields§
§triples: Vec<AttributionTriple>§check_result: CheckResult§run_hash: StringImplementations§
Source§impl AttributedRunResult
impl AttributedRunResult
pub fn new( triples: Vec<AttributionTriple>, check_result: CheckResult, ) -> AttributedRunResult
Trait Implementations§
Source§impl Clone for AttributedRunResult
impl Clone for AttributedRunResult
Source§fn clone(&self) -> AttributedRunResult
fn clone(&self) -> AttributedRunResult
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 moreAuto Trait Implementations§
impl Freeze for AttributedRunResult
impl RefUnwindSafe for AttributedRunResult
impl Send for AttributedRunResult
impl Sync for AttributedRunResult
impl Unpin for AttributedRunResult
impl UnsafeUnpin for AttributedRunResult
impl UnwindSafe for AttributedRunResult
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