-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use stable internals for key-value API #550
Merged
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c644e6f
port to stable versions of value-bag and sval
KodrAus 9c125f2
borrow for 'kv from Key<'kv> and Value<'kv>
KodrAus 955d352
qualify path to serde
KodrAus b71d3b1
fix up path in doc comments
KodrAus ab829c6
run fmt
KodrAus 8311727
only run tests on MSRV
KodrAus ef94087
Merge branch 'master' into feat/stable-kv-internals
KodrAus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,12 @@ impl<'k> Key<'k> { | |
pub fn as_str(&self) -> &str { | ||
self.key | ||
} | ||
|
||
/// Try get a string borrowed for the `'k` lifetime from this key. | ||
pub fn to_borrowed_str(&self) -> Option<&'k str> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This returns an |
||
// NOTE: This API leaves room for keys to be owned | ||
Some(self.key) | ||
} | ||
} | ||
|
||
impl<'k> fmt::Display for Key<'k> { | ||
|
@@ -98,11 +104,25 @@ mod sval_support { | |
use super::*; | ||
|
||
extern crate sval; | ||
extern crate sval_ref; | ||
|
||
use self::sval::value::{self, Value}; | ||
use self::sval::Value; | ||
use self::sval_ref::ValueRef; | ||
|
||
impl<'a> Value for Key<'a> { | ||
fn stream(&self, stream: &mut value::Stream) -> value::Result { | ||
fn stream<'sval, S: sval::Stream<'sval> + ?Sized>( | ||
&'sval self, | ||
stream: &mut S, | ||
) -> sval::Result { | ||
self.key.stream(stream) | ||
} | ||
} | ||
|
||
impl<'a> ValueRef<'a> for Key<'a> { | ||
fn stream_ref<S: self::sval::Stream<'a> + ?Sized>( | ||
&self, | ||
stream: &mut S, | ||
) -> self::sval::Result { | ||
self.key.stream(stream) | ||
} | ||
} | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ended up skipping a stable
1.x
for this library in the end, because the API changed fairly significantly between beta releases.