pub struct NodeStateRecord {
pub node_id: String,
pub session_id: String,
pub state: String,
pub v_total: f32,
pub merkle_hash: Option<Vec<u8>>,
pub attempt_count: i32,
}Expand description
Record for node state
Fields§
§node_id: String§session_id: String§state: String§v_total: f32§merkle_hash: Option<Vec<u8>>§attempt_count: i32Trait Implementations§
Source§impl Clone for NodeStateRecord
impl Clone for NodeStateRecord
Source§fn clone(&self) -> NodeStateRecord
fn clone(&self) -> NodeStateRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 NodeStateRecord
impl Debug for NodeStateRecord
Source§impl<'de> Deserialize<'de> for NodeStateRecord
impl<'de> Deserialize<'de> for NodeStateRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeStateRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeStateRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NodeStateRecord
impl Serialize for NodeStateRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NodeStateRecord
impl RefUnwindSafe for NodeStateRecord
impl Send for NodeStateRecord
impl Sync for NodeStateRecord
impl Unpin for NodeStateRecord
impl UnwindSafe for NodeStateRecord
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