hapi_rs

Module stringhandle

Source
Expand description

String handling utilities and iterators

Structs§

  • Iterator over CStrings returned from StringArray::iter_cstr()
  • Consuming iterator over String, returned from StringArray::into_iter()
  • Holds a contiguous array of bytes where each individual string value is null-separated. You can choose how to iterate over it by calling a corresponding iter_* function. The Debug impl has an alternative {:#?} representation, which prints as a vec of strings.
  • A handle to a string returned by some api. Then the String can be retrieved with Session::get_string
  • Iterator over &str, returned from StringArray::iter_str()

Functions§