pub type DefaultError = String;
Expand description
Default error type to use with state machine trie backend.
Aliased Type§
struct DefaultError { /* private fields */ }
Implementations
Source§impl String
impl String
1.0.0 (const: 1.39.0) · Sourcepub const fn new() -> String
pub const fn new() -> String
Creates a new empty String
.
Given that the String
is empty, this will not allocate any initial
buffer. While that means that this initial operation is very
inexpensive, it may cause excessive allocation later when you add
data. If you have an idea of how much data the String
will hold,
consider the with_capacity
method to prevent excessive
re-allocation.
§Examples
let s = String::new();
1.0.0 · Sourcepub fn with_capacity(capacity: usize) -> String
pub fn with_capacity(capacity: usize) -> String
Creates a new empty String
with at least the specified capacity.
String
s have an internal buffer to hold their data. The capacity is
the length of that buffer, and can be queried with the capacity
method. This method creates an empty String
, but one with an initial
buffer that can hold at least capacity
bytes. This is useful when you
may be appending a bunch of data to the String
, reducing the number of
reallocations it needs to do.
If the given capacity is 0
, no allocation will occur, and this method
is identical to the new
method.
§Examples
let mut s = String::with_capacity(10);
// The String contains no chars, even though it has capacity for more
assert_eq!(s.len(), 0);
// These are all done without reallocating...
let cap = s.capacity();
for _ in 0..10 {
s.push('a');
}
assert_eq!(s.capacity(), cap);
// ...but this may make the string reallocate
s.push('a');
Sourcepub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError>
🔬This is a nightly-only experimental API. (try_with_capacity
)
pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError>
try_with_capacity
)1.0.0 · Sourcepub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error>
pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error>
Converts a vector of bytes to a String
.
A string (String
) is made of bytes (u8
), and a vector of bytes
(Vec<u8>
) is made of bytes, so this function converts between the
two. Not all byte slices are valid String
s, however: String
requires that it is valid UTF-8. from_utf8()
checks to ensure that
the bytes are valid UTF-8, and then does the conversion.
If you are sure that the byte slice is valid UTF-8, and you don’t want
to incur the overhead of the validity check, there is an unsafe version
of this function, from_utf8_unchecked
, which has the same behavior
but skips the check.
This method will take care to not copy the vector, for efficiency’s sake.
If you need a &str
instead of a String
, consider
str::from_utf8
.
The inverse of this method is into_bytes
.
§Errors
Returns Err
if the slice is not UTF-8 with a description as to why the
provided bytes are not UTF-8. The vector you moved in is also included.
§Examples
Basic usage:
// some bytes, in a vector
let sparkle_heart = vec![240, 159, 146, 150];
// We know these bytes are valid, so we'll use `unwrap()`.
let sparkle_heart = String::from_utf8(sparkle_heart).unwrap();
assert_eq!("💖", sparkle_heart);
Incorrect bytes:
// some invalid bytes, in a vector
let sparkle_heart = vec![0, 159, 146, 150];
assert!(String::from_utf8(sparkle_heart).is_err());
See the docs for FromUtf8Error
for more details on what you can do
with this error.
1.0.0 · Sourcepub fn from_utf8_lossy(v: &[u8]) -> Cow<'_, str>
pub fn from_utf8_lossy(v: &[u8]) -> Cow<'_, str>
Converts a slice of bytes to a string, including invalid characters.
Strings are made of bytes (u8
), and a slice of bytes
(&[u8]
) is made of bytes, so this function converts
between the two. Not all byte slices are valid strings, however: strings
are required to be valid UTF-8. During this conversion,
from_utf8_lossy()
will replace any invalid UTF-8 sequences with
U+FFFD REPLACEMENT CHARACTER
, which looks like this: �
If you are sure that the byte slice is valid UTF-8, and you don’t want
to incur the overhead of the conversion, there is an unsafe version
of this function, from_utf8_unchecked
, which has the same behavior
but skips the checks.
This function returns a Cow<'a, str>
. If our byte slice is invalid
UTF-8, then we need to insert the replacement characters, which will
change the size of the string, and hence, require a String
. But if
it’s already valid UTF-8, we don’t need a new allocation. This return
type allows us to handle both cases.
§Examples
Basic usage:
// some bytes, in a vector
let sparkle_heart = vec![240, 159, 146, 150];
let sparkle_heart = String::from_utf8_lossy(&sparkle_heart);
assert_eq!("💖", sparkle_heart);
Incorrect bytes:
// some invalid bytes
let input = b"Hello \xF0\x90\x80World";
let output = String::from_utf8_lossy(input);
assert_eq!("Hello �World", output);
Sourcepub fn from_utf8_lossy_owned(v: Vec<u8>) -> String
🔬This is a nightly-only experimental API. (string_from_utf8_lossy_owned
)
pub fn from_utf8_lossy_owned(v: Vec<u8>) -> String
string_from_utf8_lossy_owned
)Converts a Vec<u8>
to a String
, substituting invalid UTF-8
sequences with replacement characters.
See from_utf8_lossy
for more details.
Note that this function does not guarantee reuse of the original Vec
allocation.
§Examples
Basic usage:
#![feature(string_from_utf8_lossy_owned)]
// some bytes, in a vector
let sparkle_heart = vec![240, 159, 146, 150];
let sparkle_heart = String::from_utf8_lossy_owned(sparkle_heart);
assert_eq!(String::from("💖"), sparkle_heart);
Incorrect bytes:
#![feature(string_from_utf8_lossy_owned)]
// some invalid bytes
let input: Vec<u8> = b"Hello \xF0\x90\x80World".into();
let output = String::from_utf8_lossy_owned(input);
assert_eq!(String::from("Hello �World"), output);
1.0.0 · Sourcepub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error>
pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error>
Decode a UTF-16–encoded vector v
into a String
, returning Err
if v
contains any invalid data.
§Examples
// 𝄞music
let v = &[0xD834, 0xDD1E, 0x006d, 0x0075,
0x0073, 0x0069, 0x0063];
assert_eq!(String::from("𝄞music"),
String::from_utf16(v).unwrap());
// 𝄞mu<invalid>ic
let v = &[0xD834, 0xDD1E, 0x006d, 0x0075,
0xD800, 0x0069, 0x0063];
assert!(String::from_utf16(v).is_err());
1.0.0 · Sourcepub fn from_utf16_lossy(v: &[u16]) -> String
pub fn from_utf16_lossy(v: &[u16]) -> String
Decode a UTF-16–encoded slice v
into a String
, replacing
invalid data with the replacement character (U+FFFD
).
Unlike from_utf8_lossy
which returns a Cow<'a, str>
,
from_utf16_lossy
returns a String
since the UTF-16 to UTF-8
conversion requires a memory allocation.
§Examples
// 𝄞mus<invalid>ic<invalid>
let v = &[0xD834, 0xDD1E, 0x006d, 0x0075,
0x0073, 0xDD1E, 0x0069, 0x0063,
0xD834];
assert_eq!(String::from("𝄞mus\u{FFFD}ic\u{FFFD}"),
String::from_utf16_lossy(v));
Sourcepub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error>
🔬This is a nightly-only experimental API. (str_from_utf16_endian
)
pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error>
str_from_utf16_endian
)Decode a UTF-16LE–encoded vector v
into a String
, returning Err
if v
contains any invalid data.
§Examples
Basic usage:
#![feature(str_from_utf16_endian)]
// 𝄞music
let v = &[0x34, 0xD8, 0x1E, 0xDD, 0x6d, 0x00, 0x75, 0x00,
0x73, 0x00, 0x69, 0x00, 0x63, 0x00];
assert_eq!(String::from("𝄞music"),
String::from_utf16le(v).unwrap());
// 𝄞mu<invalid>ic
let v = &[0x34, 0xD8, 0x1E, 0xDD, 0x6d, 0x00, 0x75, 0x00,
0x00, 0xD8, 0x69, 0x00, 0x63, 0x00];
assert!(String::from_utf16le(v).is_err());
Sourcepub fn from_utf16le_lossy(v: &[u8]) -> String
🔬This is a nightly-only experimental API. (str_from_utf16_endian
)
pub fn from_utf16le_lossy(v: &[u8]) -> String
str_from_utf16_endian
)Decode a UTF-16LE–encoded slice v
into a String
, replacing
invalid data with the replacement character (U+FFFD
).
Unlike from_utf8_lossy
which returns a Cow<'a, str>
,
from_utf16le_lossy
returns a String
since the UTF-16 to UTF-8
conversion requires a memory allocation.
§Examples
Basic usage:
#![feature(str_from_utf16_endian)]
// 𝄞mus<invalid>ic<invalid>
let v = &[0x34, 0xD8, 0x1E, 0xDD, 0x6d, 0x00, 0x75, 0x00,
0x73, 0x00, 0x1E, 0xDD, 0x69, 0x00, 0x63, 0x00,
0x34, 0xD8];
assert_eq!(String::from("𝄞mus\u{FFFD}ic\u{FFFD}"),
String::from_utf16le_lossy(v));
Sourcepub fn from_utf16be(v: &[u8]) -> Result<String, FromUtf16Error>
🔬This is a nightly-only experimental API. (str_from_utf16_endian
)
pub fn from_utf16be(v: &[u8]) -> Result<String, FromUtf16Error>
str_from_utf16_endian
)Decode a UTF-16BE–encoded vector v
into a String
, returning Err
if v
contains any invalid data.
§Examples
Basic usage:
#![feature(str_from_utf16_endian)]
// 𝄞music
let v = &[0xD8, 0x34, 0xDD, 0x1E, 0x00, 0x6d, 0x00, 0x75,
0x00, 0x73, 0x00, 0x69, 0x00, 0x63];
assert_eq!(String::from("𝄞music"),
String::from_utf16be(v).unwrap());
// 𝄞mu<invalid>ic
let v = &[0xD8, 0x34, 0xDD, 0x1E, 0x00, 0x6d, 0x00, 0x75,
0xD8, 0x00, 0x00, 0x69, 0x00, 0x63];
assert!(String::from_utf16be(v).is_err());
Sourcepub fn from_utf16be_lossy(v: &[u8]) -> String
🔬This is a nightly-only experimental API. (str_from_utf16_endian
)
pub fn from_utf16be_lossy(v: &[u8]) -> String
str_from_utf16_endian
)Decode a UTF-16BE–encoded slice v
into a String
, replacing
invalid data with the replacement character (U+FFFD
).
Unlike from_utf8_lossy
which returns a Cow<'a, str>
,
from_utf16le_lossy
returns a String
since the UTF-16 to UTF-8
conversion requires a memory allocation.
§Examples
Basic usage:
#![feature(str_from_utf16_endian)]
// 𝄞mus<invalid>ic<invalid>
let v = &[0xD8, 0x34, 0xDD, 0x1E, 0x00, 0x6d, 0x00, 0x75,
0x00, 0x73, 0xDD, 0x1E, 0x00, 0x69, 0x00, 0x63,
0xD8, 0x34];
assert_eq!(String::from("𝄞mus\u{FFFD}ic\u{FFFD}"),
String::from_utf16be_lossy(v));
Sourcepub fn into_raw_parts(self) -> (*mut u8, usize, usize)
🔬This is a nightly-only experimental API. (vec_into_raw_parts
)
pub fn into_raw_parts(self) -> (*mut u8, usize, usize)
vec_into_raw_parts
)Decomposes a String
into its raw components: (pointer, length, capacity)
.
Returns the raw pointer to the underlying data, the length of
the string (in bytes), and the allocated capacity of the data
(in bytes). These are the same arguments in the same order as
the arguments to from_raw_parts
.
After calling this function, the caller is responsible for the
memory previously managed by the String
. The only way to do
this is to convert the raw pointer, length, and capacity back
into a String
with the from_raw_parts
function, allowing
the destructor to perform the cleanup.
§Examples
#![feature(vec_into_raw_parts)]
let s = String::from("hello");
let (ptr, len, cap) = s.into_raw_parts();
let rebuilt = unsafe { String::from_raw_parts(ptr, len, cap) };
assert_eq!(rebuilt, "hello");
1.0.0 · Sourcepub unsafe fn from_raw_parts(
buf: *mut u8,
length: usize,
capacity: usize,
) -> String
pub unsafe fn from_raw_parts( buf: *mut u8, length: usize, capacity: usize, ) -> String
Creates a new String
from a pointer, a length and a capacity.
§Safety
This is highly unsafe, due to the number of invariants that aren’t checked:
- The memory at
buf
needs to have been previously allocated by the same allocator the standard library uses, with a required alignment of exactly 1. length
needs to be less than or equal tocapacity
.capacity
needs to be the correct value.- The first
length
bytes atbuf
need to be valid UTF-8.
Violating these may cause problems like corrupting the allocator’s
internal data structures. For example, it is normally not safe to
build a String
from a pointer to a C char
array containing UTF-8
unless you are certain that array was originally allocated by the
Rust standard library’s allocator.
The ownership of buf
is effectively transferred to the
String
which may then deallocate, reallocate or change the
contents of memory pointed to by the pointer at will. Ensure
that nothing else uses the pointer after calling this
function.
§Examples
use std::mem;
unsafe {
let s = String::from("hello");
// Prevent automatically dropping the String's data
let mut s = mem::ManuallyDrop::new(s);
let ptr = s.as_mut_ptr();
let len = s.len();
let capacity = s.capacity();
let s = String::from_raw_parts(ptr, len, capacity);
assert_eq!(String::from("hello"), s);
}
1.0.0 · Sourcepub unsafe fn from_utf8_unchecked(bytes: Vec<u8>) -> String
pub unsafe fn from_utf8_unchecked(bytes: Vec<u8>) -> String
Converts a vector of bytes to a String
without checking that the
string contains valid UTF-8.
See the safe version, from_utf8
, for more details.
§Safety
This function is unsafe because it does not check that the bytes passed
to it are valid UTF-8. If this constraint is violated, it may cause
memory unsafety issues with future users of the String
, as the rest of
the standard library assumes that String
s are valid UTF-8.
§Examples
// some bytes, in a vector
let sparkle_heart = vec![240, 159, 146, 150];
let sparkle_heart = unsafe {
String::from_utf8_unchecked(sparkle_heart)
};
assert_eq!("💖", sparkle_heart);
1.0.0 (const: unstable) · Sourcepub fn into_bytes(self) -> Vec<u8> ⓘ
pub fn into_bytes(self) -> Vec<u8> ⓘ
Converts a String
into a byte vector.
This consumes the String
, so we do not need to copy its contents.
§Examples
let s = String::from("hello");
let bytes = s.into_bytes();
assert_eq!(&[104, 101, 108, 108, 111][..], &bytes[..]);
1.7.0 (const: unstable) · Sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Extracts a string slice containing the entire String
.
§Examples
let s = String::from("foo");
assert_eq!("foo", s.as_str());
1.7.0 (const: unstable) · Sourcepub fn as_mut_str(&mut self) -> &mut str
pub fn as_mut_str(&mut self) -> &mut str
Converts a String
into a mutable string slice.
§Examples
let mut s = String::from("foobar");
let s_mut_str = s.as_mut_str();
s_mut_str.make_ascii_uppercase();
assert_eq!("FOOBAR", s_mut_str);
1.0.0 · Sourcepub fn push_str(&mut self, string: &str)
pub fn push_str(&mut self, string: &str)
Appends a given string slice onto the end of this String
.
§Examples
let mut s = String::from("foo");
s.push_str("bar");
assert_eq!("foobar", s);
Sourcepub fn extend_from_within<R>(&mut self, src: R)where
R: RangeBounds<usize>,
🔬This is a nightly-only experimental API. (string_extend_from_within
)
pub fn extend_from_within<R>(&mut self, src: R)where
R: RangeBounds<usize>,
string_extend_from_within
)Copies elements from src
range to the end of the string.
§Panics
Panics if the starting point or end point do not lie on a char
boundary, or if they’re out of bounds.
§Examples
#![feature(string_extend_from_within)]
let mut string = String::from("abcde");
string.extend_from_within(2..);
assert_eq!(string, "abcdecde");
string.extend_from_within(..2);
assert_eq!(string, "abcdecdeab");
string.extend_from_within(4..8);
assert_eq!(string, "abcdecdeabecde");
1.0.0 (const: unstable) · Sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns this String
’s capacity, in bytes.
§Examples
let s = String::with_capacity(10);
assert!(s.capacity() >= 10);
1.0.0 · Sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserves capacity for at least additional
bytes more than the
current length. The allocator may reserve more space to speculatively
avoid frequent allocations. After calling reserve
,
capacity will be greater than or equal to self.len() + additional
.
Does nothing if capacity is already sufficient.
§Panics
Panics if the new capacity overflows usize
.
§Examples
Basic usage:
let mut s = String::new();
s.reserve(10);
assert!(s.capacity() >= 10);
This might not actually increase the capacity:
let mut s = String::with_capacity(10);
s.push('a');
s.push('b');
// s now has a length of 2 and a capacity of at least 10
let capacity = s.capacity();
assert_eq!(2, s.len());
assert!(capacity >= 10);
// Since we already have at least an extra 8 capacity, calling this...
s.reserve(8);
// ... doesn't actually increase.
assert_eq!(capacity, s.capacity());
1.0.0 · Sourcepub fn reserve_exact(&mut self, additional: usize)
pub fn reserve_exact(&mut self, additional: usize)
Reserves the minimum capacity for at least additional
bytes more than
the current length. Unlike reserve
, this will not
deliberately over-allocate to speculatively avoid frequent allocations.
After calling reserve_exact
, capacity will be greater than or equal to
self.len() + additional
. Does nothing if the capacity is already
sufficient.
§Panics
Panics if the new capacity overflows usize
.
§Examples
Basic usage:
let mut s = String::new();
s.reserve_exact(10);
assert!(s.capacity() >= 10);
This might not actually increase the capacity:
let mut s = String::with_capacity(10);
s.push('a');
s.push('b');
// s now has a length of 2 and a capacity of at least 10
let capacity = s.capacity();
assert_eq!(2, s.len());
assert!(capacity >= 10);
// Since we already have at least an extra 8 capacity, calling this...
s.reserve_exact(8);
// ... doesn't actually increase.
assert_eq!(capacity, s.capacity());
1.57.0 · Sourcepub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>
pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>
Tries to reserve capacity for at least additional
bytes more than the
current length. The allocator may reserve more space to speculatively
avoid frequent allocations. After calling try_reserve
, capacity will be
greater than or equal to self.len() + additional
if it returns
Ok(())
. Does nothing if capacity is already sufficient. This method
preserves the contents even if an error occurs.
§Errors
If the capacity overflows, or the allocator reports a failure, then an error is returned.
§Examples
use std::collections::TryReserveError;
fn process_data(data: &str) -> Result<String, TryReserveError> {
let mut output = String::new();
// Pre-reserve the memory, exiting if we can't
output.try_reserve(data.len())?;
// Now we know this can't OOM in the middle of our complex work
output.push_str(data);
Ok(output)
}
1.57.0 · Sourcepub fn try_reserve_exact(
&mut self,
additional: usize,
) -> Result<(), TryReserveError>
pub fn try_reserve_exact( &mut self, additional: usize, ) -> Result<(), TryReserveError>
Tries to reserve the minimum capacity for at least additional
bytes
more than the current length. Unlike try_reserve
, this will not
deliberately over-allocate to speculatively avoid frequent allocations.
After calling try_reserve_exact
, capacity will be greater than or
equal to self.len() + additional
if it returns Ok(())
.
Does nothing if the capacity is already sufficient.
Note that the allocator may give the collection more space than it
requests. Therefore, capacity can not be relied upon to be precisely
minimal. Prefer try_reserve
if future insertions are expected.
§Errors
If the capacity overflows, or the allocator reports a failure, then an error is returned.
§Examples
use std::collections::TryReserveError;
fn process_data(data: &str) -> Result<String, TryReserveError> {
let mut output = String::new();
// Pre-reserve the memory, exiting if we can't
output.try_reserve_exact(data.len())?;
// Now we know this can't OOM in the middle of our complex work
output.push_str(data);
Ok(output)
}
1.0.0 · Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of this String
to match its length.
§Examples
let mut s = String::from("foo");
s.reserve(100);
assert!(s.capacity() >= 100);
s.shrink_to_fit();
assert_eq!(3, s.capacity());
1.56.0 · Sourcepub fn shrink_to(&mut self, min_capacity: usize)
pub fn shrink_to(&mut self, min_capacity: usize)
Shrinks the capacity of this String
with a lower bound.
The capacity will remain at least as large as both the length and the supplied value.
If the current capacity is less than the lower limit, this is a no-op.
§Examples
let mut s = String::from("foo");
s.reserve(100);
assert!(s.capacity() >= 100);
s.shrink_to(10);
assert!(s.capacity() >= 10);
s.shrink_to(0);
assert!(s.capacity() >= 3);
1.0.0 · Sourcepub fn truncate(&mut self, new_len: usize)
pub fn truncate(&mut self, new_len: usize)
Shortens this String
to the specified length.
If new_len
is greater than or equal to the string’s current length, this has no
effect.
Note that this method has no effect on the allocated capacity of the string
§Panics
Panics if new_len
does not lie on a char
boundary.
§Examples
let mut s = String::from("hello");
s.truncate(2);
assert_eq!("he", s);
1.0.0 · Sourcepub fn remove(&mut self, idx: usize) -> char
pub fn remove(&mut self, idx: usize) -> char
Removes a char
from this String
at a byte position and returns it.
This is an O(n) operation, as it requires copying every element in the buffer.
§Panics
Panics if idx
is larger than or equal to the String
’s length,
or if it does not lie on a char
boundary.
§Examples
let mut s = String::from("abç");
assert_eq!(s.remove(0), 'a');
assert_eq!(s.remove(1), 'ç');
assert_eq!(s.remove(0), 'b');
Sourcepub fn remove_matches<P>(&mut self, pat: P)where
P: Pattern,
🔬This is a nightly-only experimental API. (string_remove_matches
)
pub fn remove_matches<P>(&mut self, pat: P)where
P: Pattern,
string_remove_matches
)Remove all matches of pattern pat
in the String
.
§Examples
#![feature(string_remove_matches)]
let mut s = String::from("Trees are not green, the sky is not blue.");
s.remove_matches("not ");
assert_eq!("Trees are green, the sky is blue.", s);
Matches will be detected and removed iteratively, so in cases where patterns overlap, only the first pattern will be removed:
#![feature(string_remove_matches)]
let mut s = String::from("banana");
s.remove_matches("ana");
assert_eq!("bna", s);
1.26.0 · Sourcepub fn retain<F>(&mut self, f: F)
pub fn retain<F>(&mut self, f: F)
Retains only the characters specified by the predicate.
In other words, remove all characters c
such that f(c)
returns false
.
This method operates in place, visiting each character exactly once in the
original order, and preserves the order of the retained characters.
§Examples
let mut s = String::from("f_o_ob_ar");
s.retain(|c| c != '_');
assert_eq!(s, "foobar");
Because the elements are visited exactly once in the original order, external state may be used to decide which elements to keep.
let mut s = String::from("abcde");
let keep = [false, true, true, false, true];
let mut iter = keep.iter();
s.retain(|_| *iter.next().unwrap());
assert_eq!(s, "bce");
1.0.0 · Sourcepub fn insert(&mut self, idx: usize, ch: char)
pub fn insert(&mut self, idx: usize, ch: char)
Inserts a character into this String
at a byte position.
This is an O(n) operation as it requires copying every element in the buffer.
§Panics
Panics if idx
is larger than the String
’s length, or if it does not
lie on a char
boundary.
§Examples
let mut s = String::with_capacity(3);
s.insert(0, 'f');
s.insert(1, 'o');
s.insert(2, 'o');
assert_eq!("foo", s);
1.16.0 · Sourcepub fn insert_str(&mut self, idx: usize, string: &str)
pub fn insert_str(&mut self, idx: usize, string: &str)
Inserts a string slice into this String
at a byte position.
This is an O(n) operation as it requires copying every element in the buffer.
§Panics
Panics if idx
is larger than the String
’s length, or if it does not
lie on a char
boundary.
§Examples
let mut s = String::from("bar");
s.insert_str(0, "foo");
assert_eq!("foobar", s);
1.0.0 (const: unstable) · Sourcepub unsafe fn as_mut_vec(&mut self) -> &mut Vec<u8> ⓘ
pub unsafe fn as_mut_vec(&mut self) -> &mut Vec<u8> ⓘ
Returns a mutable reference to the contents of this String
.
§Safety
This function is unsafe because the returned &mut Vec
allows writing
bytes which are not valid UTF-8. If this constraint is violated, using
the original String
after dropping the &mut Vec
may violate memory
safety, as the rest of the standard library assumes that String
s are
valid UTF-8.
§Examples
let mut s = String::from("hello");
unsafe {
let vec = s.as_mut_vec();
assert_eq!(&[104, 101, 108, 108, 111][..], &vec[..]);
vec.reverse();
}
assert_eq!(s, "olleh");
1.0.0 (const: unstable) · Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the length of this String
, in bytes, not char
s or
graphemes. In other words, it might not be what a human considers the
length of the string.
§Examples
let a = String::from("foo");
assert_eq!(a.len(), 3);
let fancy_f = String::from("ƒoo");
assert_eq!(fancy_f.len(), 4);
assert_eq!(fancy_f.chars().count(), 3);
1.0.0 (const: unstable) · Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if this String
has a length of zero, and false
otherwise.
§Examples
let mut v = String::new();
assert!(v.is_empty());
v.push('a');
assert!(!v.is_empty());
1.16.0 · Sourcepub fn split_off(&mut self, at: usize) -> String
pub fn split_off(&mut self, at: usize) -> String
Splits the string into two at the given byte index.
Returns a newly allocated String
. self
contains bytes [0, at)
, and
the returned String
contains bytes [at, len)
. at
must be on the
boundary of a UTF-8 code point.
Note that the capacity of self
does not change.
§Panics
Panics if at
is not on a UTF-8
code point boundary, or if it is beyond the last
code point of the string.
§Examples
let mut hello = String::from("Hello, World!");
let world = hello.split_off(7);
assert_eq!(hello, "Hello, ");
assert_eq!(world, "World!");
1.0.0 · Sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Truncates this String
, removing all contents.
While this means the String
will have a length of zero, it does not
touch its capacity.
§Examples
let mut s = String::from("foo");
s.clear();
assert!(s.is_empty());
assert_eq!(0, s.len());
assert_eq!(3, s.capacity());
1.6.0 · Sourcepub fn drain<R>(&mut self, range: R) -> Drain<'_>where
R: RangeBounds<usize>,
pub fn drain<R>(&mut self, range: R) -> Drain<'_>where
R: RangeBounds<usize>,
Removes the specified range from the string in bulk, returning all removed characters as an iterator.
The returned iterator keeps a mutable borrow on the string to optimize its implementation.
§Panics
Panics if the starting point or end point do not lie on a char
boundary, or if they’re out of bounds.
§Leaking
If the returned iterator goes out of scope without being dropped (due to
core::mem::forget
, for example), the string may still contain a copy
of any drained characters, or may have lost characters arbitrarily,
including characters outside the range.
§Examples
let mut s = String::from("α is alpha, β is beta");
let beta_offset = s.find('β').unwrap_or(s.len());
// Remove the range up until the β from the string
let t: String = s.drain(..beta_offset).collect();
assert_eq!(t, "α is alpha, ");
assert_eq!(s, "β is beta");
// A full range clears the string, like `clear()` does
s.drain(..);
assert_eq!(s, "");
1.27.0 · Sourcepub fn replace_range<R>(&mut self, range: R, replace_with: &str)where
R: RangeBounds<usize>,
pub fn replace_range<R>(&mut self, range: R, replace_with: &str)where
R: RangeBounds<usize>,
Removes the specified range in the string, and replaces it with the given string. The given string doesn’t need to be the same length as the range.
§Panics
Panics if the starting point or end point do not lie on a char
boundary, or if they’re out of bounds.
§Examples
let mut s = String::from("α is alpha, β is beta");
let beta_offset = s.find('β').unwrap_or(s.len());
// Replace the range up until the β from the string
s.replace_range(..beta_offset, "Α is capital alpha; ");
assert_eq!(s, "Α is capital alpha; β is beta");
1.4.0 · Sourcepub fn into_boxed_str(self) -> Box<str>
pub fn into_boxed_str(self) -> Box<str>
Converts this String
into a Box<str>
.
Before doing the conversion, this method discards excess capacity like shrink_to_fit
.
Note that this call may reallocate and copy the bytes of the string.
§Examples
let s = String::from("hello");
let b = s.into_boxed_str();
1.72.0 · Sourcepub fn leak<'a>(self) -> &'a mut str
pub fn leak<'a>(self) -> &'a mut str
Consumes and leaks the String
, returning a mutable reference to the contents,
&'a mut str
.
The caller has free choice over the returned lifetime, including 'static
. Indeed,
this function is ideally used for data that lives for the remainder of the program’s life,
as dropping the returned reference will cause a memory leak.
It does not reallocate or shrink the String
, so the leaked allocation may include unused
capacity that is not part of the returned slice. If you want to discard excess capacity,
call into_boxed_str
, and then Box::leak
instead. However, keep in mind that
trimming the capacity may result in a reallocation and copy.
§Examples
let x = String::from("bucket");
let static_ref: &'static mut str = x.leak();
assert_eq!(static_ref, "bucket");
Trait Implementations
1.0.0 · Source§impl Add<&str> for String
impl Add<&str> for String
Implements the +
operator for concatenating two strings.
This consumes the String
on the left-hand side and re-uses its buffer (growing it if
necessary). This is done to avoid allocating a new String
and copying the entire contents on
every operation, which would lead to O(n^2) running time when building an n-byte string by
repeated concatenation.
The string on the right-hand side is only borrowed; its contents are copied into the returned
String
.
§Examples
Concatenating two String
s takes the first by value and borrows the second:
let a = String::from("hello");
let b = String::from(" world");
let c = a + &b;
// `a` is moved and can no longer be used here.
If you want to keep using the first String
, you can clone it and append to the clone instead:
let a = String::from("hello");
let b = String::from(" world");
let c = a.clone() + &b;
// `a` is still valid here.
Concatenating &str
slices can be done by converting the first to a String
:
let a = "hello";
let b = " world";
let c = a.to_string() + b;
1.12.0 · Source§impl AddAssign<&str> for String
impl AddAssign<&str> for String
Implements the +=
operator for appending to a String
.
This has the same behavior as the push_str
method.
Source§fn add_assign(&mut self, other: &str)
fn add_assign(&mut self, other: &str)
+=
operation. Read more§impl<'a> Arbitrary<'a> for String
impl<'a> Arbitrary<'a> for String
§fn arbitrary(u: &mut Unstructured<'a>) -> Result<String, Error>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<String, Error>
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<String, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<String, Error>
Self
from the entirety of the given
unstructured data. Read more§impl Arg for String
impl Arg for String
§fn to_string_lossy(&self) -> Cow<'_, str>
fn to_string_lossy(&self) -> Cow<'_, str>
Cow<'_, str>
.§fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
CStr
.§impl Arg for String
impl Arg for String
§fn to_string_lossy(&self) -> Cow<'_, str>
fn to_string_lossy(&self) -> Cow<'_, str>
Cow<'_, str>
.§fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
CStr
.§impl Arg for String
impl Arg for String
§fn to_string_lossy(&self) -> Cow<'_, str>
fn to_string_lossy(&self) -> Cow<'_, str>
Cow<'_, str>
.§fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>, Errno>
CStr
.1.36.0 · Source§impl BorrowMut<str> for String
impl BorrowMut<str> for String
Source§fn borrow_mut(&mut self) -> &mut str
fn borrow_mut(&mut self) -> &mut str
§impl CanonicalDeserialize for String
impl CanonicalDeserialize for String
§fn deserialize_with_mode<R>(
reader: R,
compress: Compress,
validate: Validate,
) -> Result<String, SerializationError>where
R: Read,
fn deserialize_with_mode<R>(
reader: R,
compress: Compress,
validate: Validate,
) -> Result<String, SerializationError>where
R: Read,
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
§impl CanonicalSerialize for String
impl CanonicalSerialize for String
§fn serialize_with_mode<W>(
&self,
writer: W,
compress: Compress,
) -> Result<(), SerializationError>where
W: Write,
fn serialize_with_mode<W>(
&self,
writer: W,
compress: Compress,
) -> Result<(), SerializationError>where
W: Write,
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn uncompressed_size(&self) -> usize
Source§impl DebugSecret for String
impl DebugSecret for String
§impl Decode for String
impl Decode for String
§fn decode<I>(input: &mut I) -> Result<String, Error>where
I: Input,
fn decode<I>(input: &mut I) -> Result<String, Error>where
I: Input,
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Source§impl<'de> Deserialize<'de> for String
impl<'de> Deserialize<'de> for String
Source§fn deserialize<D>(
deserializer: D,
) -> Result<String, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<String, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl Encodable for String
impl Encodable for String
§fn rlp_append(&self, s: &mut RlpStream)
fn rlp_append(&self, s: &mut RlpStream)
§impl EncodeAsVarULE<str> for String
impl EncodeAsVarULE<str> for String
§fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
cb
with a piecewise list of byte slices that when concatenated
produce the memory pattern of the corresponding instance of T
. Read more§fn encode_var_ule_len(&self) -> usize
fn encode_var_ule_len(&self) -> usize
VarULE
] type§fn encode_var_ule_write(&self, dst: &mut [u8])
fn encode_var_ule_write(&self, dst: &mut [u8])
VarULE
] type to the dst
buffer. dst
should
be the size of [Self::encode_var_ule_len()
]§impl EncodeTarget for String
impl EncodeTarget for String
§fn encode_with(
&mut self,
max_len: usize,
f: impl for<'a> FnOnce(&'a mut [u8]) -> Result<usize, Error>,
) -> Result<usize, Error>
fn encode_with( &mut self, max_len: usize, f: impl for<'a> FnOnce(&'a mut [u8]) -> Result<usize, Error>, ) -> Result<usize, Error>
1.2.0 · Source§impl<'a> Extend<&'a char> for String
impl<'a> Extend<&'a char> for String
Source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = &'a char>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = &'a char>,
Source§fn extend_one(&mut self, _: &'a char)
fn extend_one(&mut self, _: &'a char)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.0.0 · Source§impl<'a> Extend<&'a str> for String
impl<'a> Extend<&'a str> for String
Source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = &'a str>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = &'a str>,
Source§fn extend_one(&mut self, s: &'a str)
fn extend_one(&mut self, s: &'a str)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)§impl<A> Extend<Box<str, A>> for Stringwhere
A: Allocator,
impl<A> Extend<Box<str, A>> for Stringwhere
A: Allocator,
§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Box<str, A>>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Box<str, A>>,
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.45.0 · Source§impl<A> Extend<Box<str, A>> for Stringwhere
A: Allocator,
impl<A> Extend<Box<str, A>> for Stringwhere
A: Allocator,
Source§fn extend<I>(&mut self, iter: I)
fn extend<I>(&mut self, iter: I)
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.19.0 · Source§impl<'a> Extend<Cow<'a, str>> for String
impl<'a> Extend<Cow<'a, str>> for String
Source§fn extend<I>(&mut self, iter: I)
fn extend<I>(&mut self, iter: I)
Source§fn extend_one(&mut self, s: Cow<'a, str>)
fn extend_one(&mut self, s: Cow<'a, str>)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.4.0 · Source§impl Extend<String> for String
impl Extend<String> for String
Source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = String>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = String>,
Source§fn extend_one(&mut self, s: String)
fn extend_one(&mut self, s: String)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.0.0 · Source§impl Extend<char> for String
impl Extend<char> for String
Source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = char>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = char>,
Source§fn extend_one(&mut self, c: char)
fn extend_one(&mut self, c: char)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)1.14.0 · Source§impl<'a> From<Cow<'a, str>> for String
impl<'a> From<Cow<'a, str>> for String
Source§fn from(s: Cow<'a, str>) -> String
fn from(s: Cow<'a, str>) -> String
Converts a clone-on-write string to an owned
instance of String
.
This extracts the owned string, clones the string if it is not already owned.
§Example
// If the string is not owned...
let cow: Cow<'_, str> = Cow::Borrowed("eggplant");
// It will allocate on the heap and copy the string.
let owned: String = String::from(cow);
assert_eq!(&owned[..], "eggplant");
1.17.0 · Source§impl<'a> FromIterator<&'a char> for String
impl<'a> FromIterator<&'a char> for String
1.0.0 · Source§impl<'a> FromIterator<&'a str> for String
impl<'a> FromIterator<&'a str> for String
1.4.0 · Source§impl FromIterator<String> for String
impl FromIterator<String> for String
1.0.0 · Source§impl FromIterator<char> for String
impl FromIterator<char> for String
§impl<'a> FromParallelIterator<&'a char> for String
impl<'a> FromParallelIterator<&'a char> for String
Collects characters from a parallel iterator into a string.
§fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = &'a char>,
fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = &'a char>,
par_iter
. Read more§impl<'a> FromParallelIterator<&'a str> for String
impl<'a> FromParallelIterator<&'a str> for String
Collects string slices from a parallel iterator into a string.
§fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = &'a str>,
fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = &'a str>,
par_iter
. Read more§impl FromParallelIterator<Box<str>> for String
impl FromParallelIterator<Box<str>> for String
Collects boxed strings from a parallel iterator into one large string.
§impl<'a> FromParallelIterator<Cow<'a, str>> for String
impl<'a> FromParallelIterator<Cow<'a, str>> for String
Collects string slices from a parallel iterator into a string.
§impl FromParallelIterator<String> for String
impl FromParallelIterator<String> for String
Collects strings from a parallel iterator into one large string.
§fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = String>,
fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = String>,
par_iter
. Read more§impl FromParallelIterator<char> for String
impl FromParallelIterator<char> for String
Collects characters from a parallel iterator into a string.
§fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = char>,
fn from_par_iter<I>(par_iter: I) -> Stringwhere
I: IntoParallelIterator<Item = char>,
par_iter
. Read moreSource§impl<'de, E> IntoDeserializer<'de, E> for Stringwhere
E: Error,
impl<'de, E> IntoDeserializer<'de, E> for Stringwhere
E: Error,
Source§type Deserializer = StringDeserializer<E>
type Deserializer = StringDeserializer<E>
Source§fn into_deserializer(self) -> StringDeserializer<E>
fn into_deserializer(self) -> StringDeserializer<E>
§impl JsonSchema for String
impl JsonSchema for String
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more§fn schema_name() -> String
fn schema_name() -> String
§fn json_schema(_: &mut SchemaGenerator) -> Schema
fn json_schema(_: &mut SchemaGenerator) -> Schema
1.0.0 · Source§impl Ord for String
impl Ord for String
§impl<'a> ParallelExtend<&'a char> for String
impl<'a> ParallelExtend<&'a char> for String
Extends a string with copied characters from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = &'a char>,
fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = &'a char>,
par_iter
. Read more§impl<'a> ParallelExtend<&'a str> for String
impl<'a> ParallelExtend<&'a str> for String
Extends a string with string slices from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = &'a str>,
fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = &'a str>,
par_iter
. Read more§impl ParallelExtend<Box<str>> for String
impl ParallelExtend<Box<str>> for String
Extends a string with boxed strings from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)
fn par_extend<I>(&mut self, par_iter: I)
par_iter
. Read more§impl<'a> ParallelExtend<Cow<'a, str>> for String
impl<'a> ParallelExtend<Cow<'a, str>> for String
Extends a string with string slices from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)
fn par_extend<I>(&mut self, par_iter: I)
par_iter
. Read more§impl ParallelExtend<String> for String
impl ParallelExtend<String> for String
Extends a string with strings from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = String>,
fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = String>,
par_iter
. Read more§impl ParallelExtend<char> for String
impl ParallelExtend<char> for String
Extends a string with characters from a parallel iterator.
§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = char>,
fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = char>,
par_iter
. Read more§impl PartialOrd<Bytes> for String
impl PartialOrd<Bytes> for String
§impl PartialOrd<BytesMut> for String
impl PartialOrd<BytesMut> for String
1.0.0 · Source§impl PartialOrd for String
impl PartialOrd for String
§impl Replacer for String
impl Replacer for String
§fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
dst
to replace the current match. Read moreSource§impl Serialize for String
impl Serialize for String
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
1.16.0 · Source§impl ToSocketAddrs for String
impl ToSocketAddrs for String
Source§type Iter = IntoIter<SocketAddr>
type Iter = IntoIter<SocketAddr>
Source§fn to_socket_addrs(&self) -> Result<IntoIter<SocketAddr>, Error>
fn to_socket_addrs(&self) -> Result<IntoIter<SocketAddr>, Error>
SocketAddr
s. Read more1.0.0 · Source§impl Write for String
impl Write for String
Source§impl WriteFormatted for String
impl WriteFormatted for String
Source§fn write_formatted<F, N>(&mut self, n: &N, format: &F) -> Result<usize, Error>where
F: Format,
N: ToFormattedString,
fn write_formatted<F, N>(&mut self, n: &N, format: &F) -> Result<usize, Error>where
F: Format,
N: ToFormattedString,
io::Write
’s write_all
method or
fmt::Write
’s write_str
method. On success, returns the number of bytes written. Read more§impl Writeable for String
impl Writeable for String
§fn write_to<W>(&self, sink: &mut W) -> Result<(), Error>
fn write_to<W>(&self, sink: &mut W) -> Result<(), Error>
write_to_parts
, and discards any
Part
annotations.§fn writeable_length_hint(&self) -> LengthHint
fn writeable_length_hint(&self) -> LengthHint
§fn write_to_string(&self) -> Cow<'_, str>
fn write_to_string(&self) -> Cow<'_, str>
String
with the data from this Writeable
. Like ToString
,
but smaller and faster. Read more§fn writeable_cmp_bytes(&self, other: &[u8]) -> Ordering
fn writeable_cmp_bytes(&self, other: &[u8]) -> Ordering
Writeable
to the given bytes
without allocating a String to hold the Writeable
contents. Read more