pub struct NodeEntry {
pub index: u32,
pub x: [u8; 32],
pub y: [u8; 32],
}Expand description
A single signer’s registry entry, already parsed and owner-checked by the caller.
x / y are the node’s secp256k1 public-key affine coordinates (big-endian), as stored in the
program’s Node account.
Fields§
§index: u32§x: [u8; 32]§y: [u8; 32]Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeEntry
impl RefUnwindSafe for NodeEntry
impl Send for NodeEntry
impl Sync for NodeEntry
impl Unpin for NodeEntry
impl UnsafeUnpin for NodeEntry
impl UnwindSafe for NodeEntry
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