-
Notifications
You must be signed in to change notification settings - Fork 79
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 conversion trait #126
Use conversion trait #126
Conversation
Reviewed 5 of 5 files at r1. src/atom/mod.rs, line 150 [r1] (raw file): Comments from the review on Reviewable.io |
Review status: all files reviewed at latest revision, 1 unresolved discussion. src/atom/mod.rs, line 150 [r1] (raw file): But since the parameter of
Comments from the review on Reviewable.io |
Review status: all files reviewed at latest revision, 1 unresolved discussion. src/atom/mod.rs, line 150 [r1] (raw file): Comments from the review on Reviewable.io |
af8b4fc
to
d9f3133
Compare
Review status: 3 of 5 files reviewed at latest revision, 1 unresolved discussion. src/atom/mod.rs, line 150 [r1] (raw file): ( Comments from the review on Reviewable.io |
Reviewed 2 of 2 files at r2. Comments from the review on Reviewable.io |
@bors-servo r=asajeffrey |
📌 Commit d9f3133 has been approved by |
Use conversion trait This is a breaking change: * `Atom::from_slice(…)` needs to be replaced with `Atom::from(…)` * `atom.as_slice().other_method()` with `atom.other_method()` * `atom.as_slice()` in another auto-deref context with `&atom` * `atom.as_slice()` in another context with either `&*atom` or `atom.as_ref()` r? @asajeffrey <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/string-cache/126) <!-- Reviewable:end -->
☀️ Test successful - travis |
This is a breaking change:
Atom::from_slice(…)
needs to be replaced withAtom::from(…)
atom.as_slice().other_method()
withatom.other_method()
atom.as_slice()
in another auto-deref context with&atom
atom.as_slice()
in another context with either&*atom
oratom.as_ref()
r? @asajeffrey