Nix/src/libutil/rust-ffi.cc

23 lines
429 B
C++
Raw Normal View History

#include "logging.hh"
2019-09-11 13:10:46 +02:00
#include "rust-ffi.hh"
extern "C" std::exception_ptr * make_error(rust::StringSlice s)
{
return new std::exception_ptr(std::make_exception_ptr(nix::Error(std::string(s.ptr, s.size))));
}
2019-12-13 19:05:09 +01:00
extern "C" void destroy_error(std::exception_ptr * ex)
{
free(ex);
}
namespace rust {
std::ostream & operator << (std::ostream & str, const String & s)
{
str << (std::string_view) s;
return str;
}
}