discord-rpc-client/src/connection/base.rs

16 lines
313 B
Rust

use std::io::Result;
use std::marker::Sized;
use std::fmt::Debug;
use models::Payload;
pub trait Connection
where Self: Sized
{
fn connect() -> Result<Self>;
fn send<T>(&mut self, opcode: u32, payload: T) -> Result<()>
where T: Payload + Debug;
fn recv(&mut self) -> Result<Vec<u8>>;
}