pub struct DeclarationVerificationBatchRow {
pub id: String,
pub target: DeclarationVerificationTarget,
pub status: DeclarationVerificationStatus,
pub facts: Box<DeclarationVerificationFacts>,
}Expand description
One ordered row inside a batch declaration-verification result.
Fields§
§id: String§target: DeclarationVerificationTarget§status: DeclarationVerificationStatus§facts: Box<DeclarationVerificationFacts>Trait Implementations§
Source§impl Clone for DeclarationVerificationBatchRow
impl Clone for DeclarationVerificationBatchRow
Source§fn clone(&self) -> DeclarationVerificationBatchRow
fn clone(&self) -> DeclarationVerificationBatchRow
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<'lean> TryFromLean<'lean> for DeclarationVerificationBatchRow
impl<'lean> TryFromLean<'lean> for DeclarationVerificationBatchRow
Source§fn try_from_lean(obj: Obj<'lean>) -> LeanResult<Self>
fn try_from_lean(obj: Obj<'lean>) -> LeanResult<Self>
Decode
obj into Self, returning a
LeanError::Host with stage
[HostStage::Conversion] if the object’s kind or payload is
outside the type’s representable range. Read moreAuto Trait Implementations§
impl Freeze for DeclarationVerificationBatchRow
impl RefUnwindSafe for DeclarationVerificationBatchRow
impl Send for DeclarationVerificationBatchRow
impl Sync for DeclarationVerificationBatchRow
impl Unpin for DeclarationVerificationBatchRow
impl UnsafeUnpin for DeclarationVerificationBatchRow
impl UnwindSafe for DeclarationVerificationBatchRow
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