-
Notifications
You must be signed in to change notification settings - Fork 107
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
Implement FromBytes::{mut,ref}_from_with_trailing_elements
#1237
Conversation
/// trailing_dst: [()], | ||
/// } | ||
/// | ||
/// let src = &[85, 85][..]; |
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.
d'oh
src/lib.rs
Outdated
/// ``` | ||
/// | ||
/// Since an explicit `count` is provided, this method supports types with | ||
/// zero-sided trailing slice elements. Methods such as [`ref_from`] |
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.
/// zero-sided trailing slice elements. Methods such as [`ref_from`] | |
/// zero-sized trailing slice elements. Methods such as [`ref_from`] |
(And elsewhere while you're at it - looks like a typo snuck in to main
)
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.
Done
src/lib.rs
Outdated
/// ``` | ||
/// | ||
/// Since an explicit `count` is provided, this method supports types with | ||
/// zero-sided trailing slice elements. Methods such as [`mut_from`] which |
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.
/// zero-sided trailing slice elements. Methods such as [`mut_from`] which | |
/// zero-sized trailing slice elements. Methods such as [`mut_from`] which |
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.
Done
b903253
to
07d6369
Compare
Makes progress on #29
07d6369
to
b39bdc9
Compare
Makes progress on #29