pub struct NodesView {
pub nodes: Option<Vec<NodeView>>,
}Fields§
§nodes: Option<Vec<NodeView>>Nodes is every node of the caller’s org with a live socket to THIS replica, ordered by id. A node connected to a different replica is not in it.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodesView
impl<'de> Deserialize<'de> for NodesView
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 NodesView
Auto Trait Implementations§
impl Freeze for NodesView
impl RefUnwindSafe for NodesView
impl Send for NodesView
impl Sync for NodesView
impl Unpin for NodesView
impl UnsafeUnpin for NodesView
impl UnwindSafe for NodesView
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