Skip to content

Instantly share code, notes, and snippets.

View Noxivs's full-sized avatar

Noxivs Noxivs

  • Toulouse, France
View GitHub Profile
pub trait Protocol {
type Clean = Self;
}
impl Protocol for usize {
type Clean = usize;
}
impl Protocol for IdentificationBaseMessage {
type Clean = IdentificationBaseMessage;
#![feature(core)]
#![feature(io)]
use std::io;
use std::mem;
struct Int64 {
pub low: u32,
pub high: u32,
}