Struct windy::AString[][src]

#[repr(C)]
pub struct AString { /* fields omitted */ }
Expand description

Represents ANSI string.

Implementations

Returns &[u8].

Returns &[u8].

Returns &mut AStr.

Returns the length of bytes.

Returns true if the length of bytes is 0.

Creates AString from v without any encoding checks.

Safety

v must be a correct ANSI string.

Creates AString from v without a null-terminated check and any encoding checks.

Safety

v must be a null-terminated ANSI string.

Converts &str to AString.

Example

use windy::AString;
let s = AString::from_str("test").unwrap();
println!("{:?}", s);

Converts &str to AString.

Example

use windy::AString;
let s = AString::from_str_lossy("test🍣");
println!("{:?}", s);

Creates AString from ptr.

Safety

ptr must be a null-terminated ANSI string.

Creates AString from ptr and len.

Safety

ptr must be a null-terminated ANSI string.

Creates AString from ptr and len without length check.

Safety

ptr must be a null-terminated ANSI string.

Methods from Deref<Target = AStr>

Returns the length of bytes.

Returns true if the length of bytes is 0.

Creates String from AStr.

Creates String from AStr.

Creates AString from AStr.

Converts AStr to WString.

Returns ConvertError::ConvertToUnicodeError if an input cannot be converted to a wide char.

Example

use windy::{AString, WString};
let s = WString::from_str("test").unwrap();
let s2 = AString::from_str("test").unwrap().to_wstring().unwrap();
assert_eq!(s, s2);

Converts AStr to WString.

Example

use windy::{AString, WString};
let s = WString::from_str("test").unwrap();
let s2 = AString::from_str("test").unwrap().to_wstring_lossy();
assert_eq!(s, s2);

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Performs the conversion.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

The returned type after indexing.

Performs the indexing (container[index]) operation. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.