[][src]Module holochain_net_ipc::message

This module contains message serialization structures.

Structs

MsgCallFailRecv

This message represents this client receiving an error response message. This message is an array of 2 Vec<u8> values.

MsgCallFailSend

Client wishes to respond with an error to a call message. This message is an array of 2 &[u8] slices.

MsgCallOkRecv

This message represents this client receiving a success response message. This message is an array of 2 Vec<u8> values.

MsgCallOkSend

Client wishes to respond with success to a call message. This message is an array of 2 &[u8] slices.

MsgCallRecv

This message represents this client receiving a call message. This message is an array of 2 Vec<u8> values.

MsgCallSend

Client wishes to send a call message to another node. This message is an array of 2 &[u8] slices.

MsgPingSend

Send a ping to the IPC server This message is an array of 1 f64 millisecond epoch timestamp value.

MsgPongRecv

A server response to a client-intiated ping message. This message is an array of 2 f64 millisecond epoch timestamp values.

Enums

Message

This enum is an amalgomation of all the server-sent message types to be used as a return type when receiving messages.