orbtk_utils

Struct String16

Source
pub struct String16 { /* private fields */ }
Expand description

A UTF-16 encoded, growable string.

§Examples

let mut string16 = String16::from(“Übung”); string16.push(‘ä’);

Implementations§

Source§

impl String16

Source

pub fn new() -> Self

Creates a new empty String16.

Source

pub fn len(&self) -> usize

Returns the length of this String16, in bytes.

§Examples

Basic usage:

let a = String16::from(“Übung”);

assert_eq!(a.len(), 5);

Source

pub fn as_bytes(&self) -> &[u16]

Returns a slice of u16s bytes that were attempted to convert to a String.

Source

pub fn as_bytes_mut(&mut self) -> &mut [u16]

Returns a mutable slice of u16s bytes that were attempted to convert to a String.

Source

pub fn insert_str(&mut self, idx: usize, string: &str)

Inserts a string slice into this String16 at a byte position.

Source

pub fn push(&mut self, ch: char)

Appends a given char onto the end of this String16.

Source

pub fn remove(&mut self, idx: usize)

Removes a char from this String16 at a byte position and returns it.

Source

pub fn is_empty(&self) -> bool

Returns true if this String16 has a length of zero, and false otherwise.

Source

pub fn ends_with(&self, pat: &str) -> bool

Returns true if this String16 ends with the given string slice, or false otherwise.

Source

pub fn clear(&mut self)

Truncates this String16, removing all contents.

Source

pub fn get_string(&self, start: usize, end: usize) -> Option<String>

Returns a string part begins with the startand ends with the end index.

Source

pub fn as_string(&self) -> String

Converts the String16 value to a String.

Trait Implementations§

Source§

impl Clone for String16

Source§

fn clone(&self) -> String16

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for String16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for String16

Source§

fn default() -> String16

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for String16

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for String16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&str> for String16

Source§

fn from(s: &str) -> Self

Converts to this type from the input type.
Source§

impl From<String> for String16

Source§

fn from(string: String) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for String16

Source§

fn eq(&self, other: &String16) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for String16

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for String16

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,