Trait ErasedCuMsg

pub trait ErasedCuMsg {
    // Required method
    fn erased_payload(&self) -> Option<&dyn Serialize>;
}

Required Methods§

fn erased_payload(&self) -> Option<&dyn Serialize>

Implementors§

Source§

impl<T> ErasedCuMsg for CuMsg<T>
where T: CuMsgPayload,