pub struct ReceiptLineageEndpoints {
pub parent_receipt_id: String,
pub child_receipt_id: String,
pub parent_request_id: RequestId,
pub child_request_id: RequestId,
pub parent_session_anchor: SessionAnchorReference,
pub child_session_anchor: SessionAnchorReference,
}Fields§
§parent_receipt_id: String§child_receipt_id: String§parent_request_id: RequestId§child_request_id: RequestId§parent_session_anchor: SessionAnchorReference§child_session_anchor: SessionAnchorReferenceImplementations§
Source§impl ReceiptLineageEndpoints
impl ReceiptLineageEndpoints
pub fn new( parent_receipt_id: impl Into<String>, child_receipt_id: impl Into<String>, parent_request_id: RequestId, child_request_id: RequestId, parent_session_anchor: SessionAnchorReference, child_session_anchor: SessionAnchorReference, ) -> ReceiptLineageEndpoints
Trait Implementations§
Source§impl Clone for ReceiptLineageEndpoints
impl Clone for ReceiptLineageEndpoints
Source§fn clone(&self) -> ReceiptLineageEndpoints
fn clone(&self) -> ReceiptLineageEndpoints
Returns a duplicate of the value. Read more
1.0.0 · 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 ReceiptLineageEndpoints
impl Debug for ReceiptLineageEndpoints
Source§impl PartialEq for ReceiptLineageEndpoints
impl PartialEq for ReceiptLineageEndpoints
impl Eq for ReceiptLineageEndpoints
impl StructuralPartialEq for ReceiptLineageEndpoints
Auto Trait Implementations§
impl Freeze for ReceiptLineageEndpoints
impl RefUnwindSafe for ReceiptLineageEndpoints
impl Send for ReceiptLineageEndpoints
impl Sync for ReceiptLineageEndpoints
impl Unpin for ReceiptLineageEndpoints
impl UnsafeUnpin for ReceiptLineageEndpoints
impl UnwindSafe for ReceiptLineageEndpoints
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