Skip to content

Instantly share code, notes, and snippets.

View cssivision's full-sized avatar
:octocat:
Focusing

cssivision cssivision

:octocat:
Focusing
View GitHub Profile
@cssivision
cssivision / gist:27070193177ff14f406a8aeb4d61946f
Created May 24, 2020 10:57
trait object/Fat pointers/vtable in Rust
// A reference to a trait object is a fat pointer: (data_ptr, vtable_ptr)
trait Test {
fn add(&self) -> i32;
fn sub(&self) -> i32;
fn mul(&self) -> i32;
}
// This will represent our home-brewed fat pointer to a trait object
#[repr(C)]
struct FatPointer<'a> {
@cssivision
cssivision / lib.rs
Created April 9, 2018 03:30 — forked from Measter/lib.rs
Rust Perf Benchmark
#![feature(test)]
extern crate test;
#[cfg(test)]
mod tests {
use super::*;
use std::fs::{File};
use std::io::{BufWriter, Write, BufRead, BufReader};
#[bench]