server: api doc part 5

This commit is contained in:
nym21
2025-10-08 20:32:27 +02:00
parent 83d74da556
commit 6ad15221de
11 changed files with 418 additions and 308 deletions

View File

@@ -25,9 +25,10 @@ const VERSION: Version = Version::ZERO;
pub struct Vecs {
starting_height: Option<Height>,
#[vecs(skip)]
#[traversable(skip)]
pub state: Option<AddressCohortState>,
#[traversable(flatten)]
pub inner: common::Vecs,
pub height_to_addr_count: EagerVec<Height, StoredU64>,

View File

@@ -17,9 +17,10 @@ use crate::{
pub struct Vecs {
state_starting_height: Option<Height>,
#[vecs(skip)]
#[traversable(skip)]
pub state: Option<UTXOCohortState>,
#[traversable(flatten)]
pub inner: common::Vecs,
}