pub struct AttachCommitParameters {
pub binding: ActiveBinding,
pub attach_secret: AttachSecret,
pub attached_position: AttachedRecordPosition,
pub receipt_expires_at: u128,
pub provenance_expires_at: u128,
}Expand description
Result allocation owned by one successful credential-attach transaction.
Fields§
§binding: ActiveBindingNewly committed binding epoch.
attach_secret: AttachSecretNewly minted result attach secret.
attached_position: AttachedRecordPositionAssigned Attached lifecycle record position.
receipt_expires_at: u128Live receipt deadline.
provenance_expires_at: u128Provenance deadline.
Trait Implementations§
Source§impl Clone for AttachCommitParameters
impl Clone for AttachCommitParameters
Source§fn clone(&self) -> AttachCommitParameters
fn clone(&self) -> AttachCommitParameters
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 moreimpl Copy for AttachCommitParameters
Source§impl Debug for AttachCommitParameters
impl Debug for AttachCommitParameters
impl Eq for AttachCommitParameters
Source§impl PartialEq for AttachCommitParameters
impl PartialEq for AttachCommitParameters
impl StructuralPartialEq for AttachCommitParameters
Auto Trait Implementations§
impl Freeze for AttachCommitParameters
impl RefUnwindSafe for AttachCommitParameters
impl Send for AttachCommitParameters
impl Sync for AttachCommitParameters
impl Unpin for AttachCommitParameters
impl UnsafeUnpin for AttachCommitParameters
impl UnwindSafe for AttachCommitParameters
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