pub struct Node<'tl> {
pub id: PublicKey<'tl>,
pub addr_list: AddressList,
pub version: u32,
pub signature: &'tl [u8],
}
Fields§
§id: PublicKey<'tl>
§addr_list: AddressList
§version: u32
§signature: &'tl [u8]
Implementations§
Trait Implementations§
Source§impl BoxedConstructor for Node<'_>
impl BoxedConstructor for Node<'_>
Source§fn as_boxed(&self) -> BoxedWrapper<&Self>
fn as_boxed(&self) -> BoxedWrapper<&Self>
Wraps bare type reference into
BoxedWrapper
.Source§fn into_boxed(self) -> BoxedWrapper<Self>
fn into_boxed(self) -> BoxedWrapper<Self>
Converts bare type into
BoxedWrapper
.impl<'tl> Copy for Node<'tl>
Auto Trait Implementations§
impl<'tl> Freeze for Node<'tl>
impl<'tl> RefUnwindSafe for Node<'tl>
impl<'tl> Send for Node<'tl>
impl<'tl> Sync for Node<'tl>
impl<'tl> Unpin for Node<'tl>
impl<'tl> UnwindSafe for Node<'tl>
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