[go: up one dir, main page]

typesize 0.1.10

A library to fetch an accurate estimate of the total memory usage of a value.
Documentation
1
2
3
4
5
6
7
8
9
#![cfg(all(target_family = "wasm", target_os = "unknown"))]

use web_time::{Instant, SystemTime};

use crate::TypeSize;

impl TypeSize for Instant {}

impl TypeSize for SystemTime {}