pub struct BlindedPath {
pub introduction_node: PublicKey,
pub blinding_point: PublicKey,
pub encrypted_data: Vec<u8>,
}Expand description
A blinded path for receiver privacy.
Fields§
§introduction_node: PublicKeyIntroduction node public key
blinding_point: PublicKeyBlinding point
encrypted_data: Vec<u8>Encrypted path data
Implementations§
Trait Implementations§
Source§impl Clone for BlindedPath
impl Clone for BlindedPath
Source§fn clone(&self) -> BlindedPath
fn clone(&self) -> BlindedPath
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 moreAuto Trait Implementations§
impl Freeze for BlindedPath
impl RefUnwindSafe for BlindedPath
impl Send for BlindedPath
impl Sync for BlindedPath
impl Unpin for BlindedPath
impl UnwindSafe for BlindedPath
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