Skip to content

Instantly share code, notes, and snippets.

View ratmice's full-sized avatar
🦕
🫖 🧶

matt rice ratmice

🦕
🫖 🧶
View GitHub Profile
@ratmice
ratmice / playground.rs
Last active September 8, 2017 20:09 — forked from anonymous/playground.rs
Rust code shared from the playground
#![allow(dead_code)]
mod sealer_unsealer {
use std::rc::Rc;
use std::ptr;
pub struct Sealed<T> {
value: T,
brand: Rc<Brand>
}