Make TypedEnvelope fields public
This commit is contained in:
@@ -38,19 +38,9 @@ type MessageHandler = Box<
|
||||
>;
|
||||
|
||||
pub struct TypedEnvelope<T> {
|
||||
id: u32,
|
||||
connection_id: ConnectionId,
|
||||
payload: T,
|
||||
}
|
||||
|
||||
impl<T> TypedEnvelope<T> {
|
||||
pub fn connection_id(&self) -> ConnectionId {
|
||||
self.connection_id
|
||||
}
|
||||
|
||||
pub fn payload(&self) -> &T {
|
||||
&self.payload
|
||||
}
|
||||
pub id: u32,
|
||||
pub connection_id: ConnectionId,
|
||||
pub payload: T,
|
||||
}
|
||||
|
||||
pub struct Peer {
|
||||
|
||||
@@ -113,7 +113,7 @@ async fn handle_open_buffer(
|
||||
rpc: &Arc<Peer>,
|
||||
cx: &mut AsyncAppContext,
|
||||
) -> anyhow::Result<()> {
|
||||
let payload = request.payload();
|
||||
let payload = &request.payload;
|
||||
dbg!(&payload.path);
|
||||
rpc.respond(request, proto::OpenBufferResponse { buffer: None })
|
||||
.await?;
|
||||
|
||||
Reference in New Issue
Block a user