ittapi-sys 0.5.0

Rust bindings for ittapi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
string_handle.py - Python module wrapper for ITT String Handle API
"""
from ittapi.native import StringHandle as _StringHandle


def string_handle(string: str):
    """
    Creates a handle for a string.
    :param string: a string
    :return: the handle to the given string
    """
    return _StringHandle(string)