pub struct Status {Show 14 fields
pub overlay: String,
pub proximity: i64,
pub bee_mode: String,
pub reserve_size: i64,
pub reserve_size_within_radius: i64,
pub pullsync_rate: f64,
pub storage_radius: i64,
pub connected_peers: i64,
pub neighborhood_size: i64,
pub batch_commitment: i64,
pub is_reachable: bool,
pub last_synced_block: i64,
pub committed_depth: i64,
pub is_warming_up: bool,
}Expand description
GET /status response — operational status snapshot. Mirrors
bee-go StatusResponse.
Fields§
§overlay: StringOverlay address.
proximity: i64Proximity order vs. the network root.
bee_mode: StringBee mode.
reserve_size: i64Reserve size (chunks).
reserve_size_within_radius: i64Reserve size within radius.
pullsync_rate: f64Pull-sync rate (chunks/sec).
storage_radius: i64Storage radius.
connected_peers: i64Currently connected peers.
neighborhood_size: i64Neighbourhood size.
batch_commitment: i64Batch commitment.
is_reachable: boolReachability flag.
last_synced_block: i64Last block synced.
committed_depth: i64Committed depth.
is_warming_up: boolWhether the node is still warming up.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Status
impl<'de> Deserialize<'de> for Status
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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