pub struct DistributedNodesUpdatedParams {
pub insertion_point_id: NodeId,
pub distributed_nodes: Vec<BackendNode>,
}Expand description
Called when distribution is changed. distributedNodesUpdated
Fields§
§insertion_point_id: NodeIdInsertion point where distributed nodes were updated.
distributed_nodes: Vec<BackendNode>Distributed nodes for given insertion point.
Trait Implementations§
Source§impl Clone for DistributedNodesUpdatedParams
impl Clone for DistributedNodesUpdatedParams
Source§fn clone(&self) -> DistributedNodesUpdatedParams
fn clone(&self) -> DistributedNodesUpdatedParams
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<'de> Deserialize<'de> for DistributedNodesUpdatedParams
impl<'de> Deserialize<'de> for DistributedNodesUpdatedParams
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
Source§impl PartialEq for DistributedNodesUpdatedParams
impl PartialEq for DistributedNodesUpdatedParams
Source§fn eq(&self, other: &DistributedNodesUpdatedParams) -> bool
fn eq(&self, other: &DistributedNodesUpdatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DistributedNodesUpdatedParams
Auto Trait Implementations§
impl Freeze for DistributedNodesUpdatedParams
impl RefUnwindSafe for DistributedNodesUpdatedParams
impl Send for DistributedNodesUpdatedParams
impl Sync for DistributedNodesUpdatedParams
impl Unpin for DistributedNodesUpdatedParams
impl UnsafeUnpin for DistributedNodesUpdatedParams
impl UnwindSafe for DistributedNodesUpdatedParams
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