pub fn encode_line<T>(value: &T) -> Result<Vec<u8>, Error>where
T: Serialize,Expand description
Encode a value as JSON and append \n. Centralises framing so
server.rs / client.rs share one implementation.
ยงErrors
Returns the underlying serde_json::Error if value fails to
serialize.