-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework structured value casting (#396)
Also adds a const-fn based mechanism for pulling concrete values out of generic ones
- Loading branch information
Showing
10 changed files
with
667 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#![cfg(feature = "kv_unstable")] | ||
#![feature(test)] | ||
|
||
extern crate log; | ||
extern crate test; | ||
|
||
use log::kv::Value; | ||
|
||
#[bench] | ||
fn u8_to_value(b: &mut test::Bencher) { | ||
b.iter(|| Value::from(1u8)) | ||
} | ||
|
||
#[bench] | ||
fn u8_to_value_debug(b: &mut test::Bencher) { | ||
b.iter(|| Value::from_debug(&1u8)) | ||
} | ||
|
||
#[bench] | ||
fn str_to_value_debug(b: &mut test::Bencher) { | ||
b.iter(|| Value::from_debug(&"a string")) | ||
} | ||
|
||
#[bench] | ||
fn custom_to_value_debug(b: &mut test::Bencher) { | ||
#[derive(Debug)] | ||
struct A; | ||
|
||
b.iter(|| Value::from_debug(&A)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.