Rollup merge of #113253 - nurmukhametdaniyar:rc_from_cstr_doc_fix, r=Nilstrieb
Fixed documentation of from<CString> for Rc<CStr>: Arc -> Rc Fix #113131
This commit is contained in:
commit
023f72ad5b
@ -888,7 +888,7 @@ impl From<&CStr> for Arc<CStr> {
|
|||||||
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
|
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
|
||||||
impl From<CString> for Rc<CStr> {
|
impl From<CString> for Rc<CStr> {
|
||||||
/// Converts a [`CString`] into an <code>[Rc]<[CStr]></code> by moving the [`CString`]
|
/// Converts a [`CString`] into an <code>[Rc]<[CStr]></code> by moving the [`CString`]
|
||||||
/// data into a new [`Arc`] buffer.
|
/// data into a new [`Rc`] buffer.
|
||||||
#[inline]
|
#[inline]
|
||||||
fn from(s: CString) -> Rc<CStr> {
|
fn from(s: CString) -> Rc<CStr> {
|
||||||
let rc: Rc<[u8]> = Rc::from(s.into_inner());
|
let rc: Rc<[u8]> = Rc::from(s.into_inner());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user