-
Notifications
You must be signed in to change notification settings - Fork 432
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
Update rand_core::Error in line with getrandom::Error #864
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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 |
---|---|---|
|
@@ -10,24 +10,28 @@ | |
use rand_core::Error; | ||
use core::fmt; | ||
|
||
/// Base code for all `JitterRng` errors | ||
const ERROR_BASE: u32 = 0xAE53_0400; | ||
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. Maybe write it like 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. Is this actually clearer? To me it's not. |
||
|
||
/// An error that can occur when [`JitterRng::test_timer`] fails. | ||
/// | ||
/// All variants have a value of 0x6e530400 = 1850934272 plus a small | ||
/// All variants have a value of 0xAE530400 = 2924676096 plus a small | ||
/// increment (1 through 5). | ||
/// | ||
/// [`JitterRng::test_timer`]: crate::JitterRng::test_timer | ||
#[derive(Debug, Clone, PartialEq, Eq)] | ||
#[repr(u32)] | ||
pub enum TimerError { | ||
/// No timer available. | ||
NoTimer = 0x6e530401, | ||
NoTimer = ERROR_BASE + 1, | ||
/// Timer too coarse to use as an entropy source. | ||
CoarseTimer = 0x6e530402, | ||
CoarseTimer = ERROR_BASE + 2, | ||
/// Timer is not monotonically increasing. | ||
NotMonotonic = 0x6e530403, | ||
NotMonotonic = ERROR_BASE + 3, | ||
/// Variations of deltas of time too small. | ||
TinyVariantions = 0x6e530404, | ||
TinyVariantions = ERROR_BASE + 4, | ||
/// Too many stuck results (indicating no added entropy). | ||
TooManyStuck = 0x6e530405, | ||
TooManyStuck = ERROR_BASE + 5, | ||
#[doc(hidden)] | ||
__Nonexhaustive, | ||
} | ||
|
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.
You should use
cfg(not(any(feature="getrandom", feature="std")))
. Same forDisplay
impl. Maybe usecfg_if
to be less error-prone?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.
std
impliesgetrandom