pub enum ClusterFrame {
Gossip(GossipPdu),
RemoteTell {
target_path: String,
manifest: String,
payload: Vec<u8>,
sender_path: Option<String>,
},
}Expand description
Wire-level frame used by both InProcessClusterTransport and
TcpClusterTransport. The two variants are multiplexed over the
same connection so that gossip and Python-level remote-tells share
the same association.
Variants§
Gossip(GossipPdu)
Cluster-membership gossip PDU.
RemoteTell
Type-erased Python actor-message envelope. The receiving side
looks up manifest in the codec registry to decode payload.
Trait Implementations§
Source§impl Clone for ClusterFrame
impl Clone for ClusterFrame
Source§fn clone(&self) -> ClusterFrame
fn clone(&self) -> ClusterFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClusterFrame
impl Debug for ClusterFrame
Source§impl<'de> Deserialize<'de> for ClusterFrame
impl<'de> Deserialize<'de> for ClusterFrame
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 ClusterFrame
impl RefUnwindSafe for ClusterFrame
impl Send for ClusterFrame
impl Sync for ClusterFrame
impl Unpin for ClusterFrame
impl UnsafeUnpin for ClusterFrame
impl UnwindSafe for ClusterFrame
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