Struct sapnwrfc::SapString [] [src]

pub struct SapString(_);

provides transformation to and from saps ucs2 (utf16) string encoding.

the internal storage keeps everything as utf16, stored in a Vec (yes, i8. thanks sap).

Methods

impl SapString
[src]

[src]

[src]

re-encodes the internal string into a rust String.

Trait Implementations

impl Debug for SapString
[src]

[src]

Formats the value using the given formatter.

impl Clone for SapString
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<Vec<i8>> for SapString
[src]

[src]

Performs the conversion.

impl<'a> From<&'a [i8]> for SapString
[src]

[src]

Performs the conversion.

impl<'a> From<&'a SapString> for SapString
[src]

[src]

Performs the conversion.

impl<'a> From<&'a String> for SapString
[src]

[src]

Performs the conversion.

impl From<String> for SapString
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for SapString
[src]

[src]

Performs the conversion.