MemoryInfoGetName property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtMemoryInfo> ptr, Pointer<Pointer<Char>> out)>> MemoryInfoGetName
getter/setter pair

\brief Get name from ::OrtMemoryInfo

\paramin ptr \paramout out Writes null terminated string to this pointer. Do NOT free the returned pointer. It is valid for the lifetime of the ::OrtMemoryInfo

\snippet{doc} snippets.dox OrtStatus Return Value

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtMemoryInfo> ptr,
      ffi.Pointer<ffi.Pointer<ffi.Char>> out,
    )
  >
>
MemoryInfoGetName;