pub struct PersistedRouteRow<'a> {
pub destination: DestinationHash,
pub entry: RouteEntry,
pub public_keys: IdentityPublicKeys,
pub dotted_name_hash: DottedNameHash,
pub announce_id: AnnounceId,
pub ratchet: Option<RatchetKey>,
pub signature: Ed25519Signature,
pub app_data: &'a [u8],
pub announce_id_ring: AnnounceIdRing<'a>,
}Fields§
§destination: DestinationHash§entry: RouteEntry§public_keys: IdentityPublicKeys§dotted_name_hash: DottedNameHash§announce_id: AnnounceId§ratchet: Option<RatchetKey>§signature: Ed25519Signature§app_data: &'a [u8]§announce_id_ring: AnnounceIdRing<'a>Trait Implementations§
Source§impl<'a> Clone for PersistedRouteRow<'a>
impl<'a> Clone for PersistedRouteRow<'a>
Source§fn clone(&self) -> PersistedRouteRow<'a>
fn clone(&self) -> PersistedRouteRow<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for PersistedRouteRow<'a>
impl<'a> RefUnwindSafe for PersistedRouteRow<'a>
impl<'a> Send for PersistedRouteRow<'a>
impl<'a> Sync for PersistedRouteRow<'a>
impl<'a> Unpin for PersistedRouteRow<'a>
impl<'a> UnsafeUnpin for PersistedRouteRow<'a>
impl<'a> UnwindSafe for PersistedRouteRow<'a>
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