pub struct NnsNeuronPage {
pub neurons: Vec<NnsNeuronRow>,
pub next_start_neuron_id: Option<u64>,
}Expand description
NnsNeuronPage
One canonically ascending page from the public Governance neuron index.
Fields§
§neurons: Vec<NnsNeuronRow>Public neuron rows returned by Governance.
next_start_neuron_id: Option<u64>Exclusive lower bound for a possible next page.
Trait Implementations§
Source§impl Clone for NnsNeuronPage
impl Clone for NnsNeuronPage
Source§fn clone(&self) -> NnsNeuronPage
fn clone(&self) -> NnsNeuronPage
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 moreSource§impl Debug for NnsNeuronPage
impl Debug for NnsNeuronPage
impl Eq for NnsNeuronPage
Source§impl PartialEq for NnsNeuronPage
impl PartialEq for NnsNeuronPage
impl StructuralPartialEq for NnsNeuronPage
Auto Trait Implementations§
impl Freeze for NnsNeuronPage
impl RefUnwindSafe for NnsNeuronPage
impl Send for NnsNeuronPage
impl Sync for NnsNeuronPage
impl Unpin for NnsNeuronPage
impl UnsafeUnpin for NnsNeuronPage
impl UnwindSafe for NnsNeuronPage
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