pub enum ClusterLog {
NewMember(Node),
MemberLeft(SocketAddr),
}Expand description
Message sent to ClusterListeners if members join or leave the cluster
Variants§
NewMember(Node)
MemberLeft(SocketAddr)
Trait Implementations§
Source§impl Clone for ClusterLog
impl Clone for ClusterLog
Auto Trait Implementations§
impl !RefUnwindSafe for ClusterLog
impl !UnwindSafe for ClusterLog
impl Freeze for ClusterLog
impl Send for ClusterLog
impl Sync for ClusterLog
impl Unpin for ClusterLog
impl UnsafeUnpin for ClusterLog
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