pub struct Identify {
pub link_id: LinkId,
pub identity: IdentityHash,
}Expand description
RNS 1.4.2 Link.identify, initiator-only.
Fire-and-forget in the reference: the peer validates it and fires its callback but sends nothing back, no proof and no ack, so there is no delivery confirmation to await and success settles at write time.
Fields§
§link_id: LinkId§identity: IdentityHashTrait Implementations§
impl Copy for Identify
impl Eq for Identify
Source§impl Settleable for Identify
impl Settleable for Identify
type Success = ()
type Failure = IdentifyFailure
fn into_command(self) -> PrnsCommand
fn from_settlement( settlement: Settlement, ) -> Option<Result<(), IdentifyFailure>>
impl StructuralPartialEq for Identify
Auto Trait Implementations§
impl Freeze for Identify
impl RefUnwindSafe for Identify
impl Send for Identify
impl Sync for Identify
impl Unpin for Identify
impl UnsafeUnpin for Identify
impl UnwindSafe for Identify
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