File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
47
47
- Changed ` stable_deref_trait ` to a platform-dependent dependency.
48
48
- Changed ` SortedLinkedList::pop ` return type from ` Result<T, ()> ` to ` Option<T> ` to match ` std::vec::pop ` .
49
49
- ` Vec::capacity ` is no longer a ` const ` function.
50
+ - Changed ` String::push_str ` return type to ` Option<()> ` .
51
+ - Changed ` String::push ` return type to ` Option<()> ` .
52
+ - Changed ` Vec::from_slice ` return type to ` Option<Self> ` .
53
+ - Changed ` Vec::extend_from_slice ` return type to ` Option<()> ` .
54
+ - Changed ` Vec::resize ` return type to ` Option<()> ` .
55
+ - Changed ` Vec::resize_defualt ` return type to ` Option<()> ` .
56
+ - Changed ` SortedLinkedList::rpop ` return type to ` Option<T> ` .
50
57
51
58
### Fixed
52
59
You can’t perform that action at this time.
0 commit comments