pub struct NodeListResponse {
pub nodes: Vec<NodeInfo>,
pub total: u32,
}Expand description
Node list response
Fields§
§nodes: Vec<NodeInfo>§total: u32Trait Implementations§
Source§impl Clone for NodeListResponse
impl Clone for NodeListResponse
Source§fn clone(&self) -> NodeListResponse
fn clone(&self) -> NodeListResponse
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 NodeListResponse
impl Debug for NodeListResponse
Source§impl<'de> Deserialize<'de> for NodeListResponse
impl<'de> Deserialize<'de> for NodeListResponse
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
Auto Trait Implementations§
impl Freeze for NodeListResponse
impl RefUnwindSafe for NodeListResponse
impl Send for NodeListResponse
impl Sync for NodeListResponse
impl Unpin for NodeListResponse
impl UnsafeUnpin for NodeListResponse
impl UnwindSafe for NodeListResponse
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