pub struct DebtItem {
pub debt_id: ArtifactId,
pub finding_kind: EligibleFindingKind,
pub key_input: FindingKeyInput,
pub finding_key: Digest,
pub accepted_fact: Fact,
pub accepted_fact_digest: Digest,
pub owner: OwnerId,
pub reason: String,
pub created_at: UtcInstant,
pub expires_at: UtcInstant,
}Fields§
§debt_id: ArtifactId§finding_kind: EligibleFindingKind§key_input: FindingKeyInput§finding_key: Digest§accepted_fact: Fact§accepted_fact_digest: Digest§owner: OwnerId§reason: String§created_at: UtcInstant§expires_at: UtcInstantTrait Implementations§
impl Eq for DebtItem
impl StructuralPartialEq for DebtItem
Auto Trait Implementations§
impl Freeze for DebtItem
impl RefUnwindSafe for DebtItem
impl Send for DebtItem
impl Sync for DebtItem
impl Unpin for DebtItem
impl UnsafeUnpin for DebtItem
impl UnwindSafe for DebtItem
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