@@ -384,7 +384,7 @@ impl CString {
384
384
/// fn some_extern_function(s: *mut c_char);
385
385
/// }
386
386
///
387
- /// let c_string = CString::new( "Hello!").expect("CString::new failed ");
387
+ /// let c_string = CString::from(c "Hello!");
388
388
/// let raw = c_string.into_raw();
389
389
/// unsafe {
390
390
/// some_extern_function(raw);
@@ -429,7 +429,7 @@ impl CString {
429
429
/// ```
430
430
/// use std::ffi::CString;
431
431
///
432
- /// let c_string = CString::new( "foo").expect("CString::new failed ");
432
+ /// let c_string = CString::from(c "foo");
433
433
///
434
434
/// let ptr = c_string.into_raw();
435
435
///
@@ -487,7 +487,7 @@ impl CString {
487
487
/// ```
488
488
/// use std::ffi::CString;
489
489
///
490
- /// let c_string = CString::new( "foo").expect("CString::new failed ");
490
+ /// let c_string = CString::from(c "foo");
491
491
/// let bytes = c_string.into_bytes();
492
492
/// assert_eq!(bytes, vec![b'f', b'o', b'o']);
493
493
/// ```
@@ -508,7 +508,7 @@ impl CString {
508
508
/// ```
509
509
/// use std::ffi::CString;
510
510
///
511
- /// let c_string = CString::new( "foo").expect("CString::new failed ");
511
+ /// let c_string = CString::from(c "foo");
512
512
/// let bytes = c_string.into_bytes_with_nul();
513
513
/// assert_eq!(bytes, vec![b'f', b'o', b'o', b'\0']);
514
514
/// ```
@@ -530,7 +530,7 @@ impl CString {
530
530
/// ```
531
531
/// use std::ffi::CString;
532
532
///
533
- /// let c_string = CString::new( "foo").expect("CString::new failed ");
533
+ /// let c_string = CString::from(c "foo");
534
534
/// let bytes = c_string.as_bytes();
535
535
/// assert_eq!(bytes, &[b'f', b'o', b'o']);
536
536
/// ```
@@ -550,7 +550,7 @@ impl CString {
550
550
/// ```
551
551
/// use std::ffi::CString;
552
552
///
553
- /// let c_string = CString::new( "foo").expect("CString::new failed ");
553
+ /// let c_string = CString::from(c "foo");
554
554
/// let bytes = c_string.as_bytes_with_nul();
555
555
/// assert_eq!(bytes, &[b'f', b'o', b'o', b'\0']);
556
556
/// ```
@@ -568,7 +568,7 @@ impl CString {
568
568
/// ```
569
569
/// use std::ffi::{CString, CStr};
570
570
///
571
- /// let c_string = CString::new(b "foo".to_vec()).expect("CString::new failed ");
571
+ /// let c_string = CString::from(c "foo");
572
572
/// let cstr = c_string.as_c_str();
573
573
/// assert_eq!(cstr,
574
574
/// CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed"));
@@ -586,12 +586,9 @@ impl CString {
586
586
/// # Examples
587
587
///
588
588
/// ```
589
- /// use std::ffi::{CString, CStr};
590
- ///
591
- /// let c_string = CString::new(b"foo".to_vec()).expect("CString::new failed");
589
+ /// let c_string = c"foo".to_owned();
592
590
/// let boxed = c_string.into_boxed_c_str();
593
- /// assert_eq!(&*boxed,
594
- /// CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed"));
591
+ /// assert_eq!(boxed.to_bytes_with_nul(), b"foo\0");
595
592
/// ```
596
593
#[ must_use = "`self` will be dropped if the result is not used" ]
597
594
#[ stable( feature = "into_boxed_c_str" , since = "1.20.0" ) ]
@@ -658,7 +655,7 @@ impl CString {
658
655
/// assert_eq!(
659
656
/// CString::from_vec_with_nul(b"abc\0".to_vec())
660
657
/// .expect("CString::from_vec_with_nul failed"),
661
- /// CString::new(b "abc".to_vec()).expect("CString::new failed" )
658
+ /// c "abc".to_owned( )
662
659
/// );
663
660
/// ```
664
661
///
@@ -1168,11 +1165,12 @@ impl CStr {
1168
1165
/// # Examples
1169
1166
///
1170
1167
/// ```
1171
- /// use std::ffi::CString;
1168
+ /// use std::ffi::{CStr, CString} ;
1172
1169
///
1173
- /// let c_string = CString::new(b"foo".to_vec()).expect("CString::new failed");
1174
- /// let boxed = c_string.into_boxed_c_str();
1175
- /// assert_eq!(boxed.into_c_string(), CString::new("foo").expect("CString::new failed"));
1170
+ /// let boxed: Box<CStr> = Box::from(c"foo");
1171
+ /// let c_string: CString = c"foo".to_owned();
1172
+ ///
1173
+ /// assert_eq!(boxed.into_c_string(), c_string);
1176
1174
/// ```
1177
1175
#[ rustc_allow_incoherent_impl]
1178
1176
#[ must_use = "`self` will be dropped if the result is not used" ]
0 commit comments