pub struct AdmissionCompletedProjection {
pub context: AdmissionProjectionContext,
pub receipt: VerifiedAdmissionReceipt,
pub tool_outcome: Option<ToolOutcomeTerminalEvidenceV1>,
pub payment_evidence: Option<PaymentTerminalEvidence>,
pub authorization: Option<VerifiedAuthorizationReceiptConsumption>,
pub eligibility: Option<OutcomeEligibilityFinalization>,
pub observer_work: Option<ObservationAttemptZero>,
pub obligation: Option<ObligationProjection>,
pub channel_terminal: Option<VerifiedChannelTerminalProjectionV1>,
}Fields§
§context: AdmissionProjectionContext§receipt: VerifiedAdmissionReceipt§tool_outcome: Option<ToolOutcomeTerminalEvidenceV1>§payment_evidence: Option<PaymentTerminalEvidence>§eligibility: Option<OutcomeEligibilityFinalization>§observer_work: Option<ObservationAttemptZero>§obligation: Option<ObligationProjection>§channel_terminal: Option<VerifiedChannelTerminalProjectionV1>Trait Implementations§
Source§impl Clone for AdmissionCompletedProjection
impl Clone for AdmissionCompletedProjection
Source§fn clone(&self) -> AdmissionCompletedProjection
fn clone(&self) -> AdmissionCompletedProjection
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 AdmissionCompletedProjection
impl Debug for AdmissionCompletedProjection
Auto Trait Implementations§
impl Freeze for AdmissionCompletedProjection
impl RefUnwindSafe for AdmissionCompletedProjection
impl Send for AdmissionCompletedProjection
impl Sync for AdmissionCompletedProjection
impl Unpin for AdmissionCompletedProjection
impl UnsafeUnpin for AdmissionCompletedProjection
impl UnwindSafe for AdmissionCompletedProjection
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more