tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

TransformResult.d.hpp (1306B)


      1 #ifndef icu4x_TransformResult_D_HPP
      2 #define icu4x_TransformResult_D_HPP
      3 
      4 #include <stdio.h>
      5 #include <stdint.h>
      6 #include <stddef.h>
      7 #include <stdbool.h>
      8 #include <memory>
      9 #include <functional>
     10 #include <optional>
     11 #include <cstdlib>
     12 #include "../diplomat_runtime.hpp"
     13 
     14 
     15 namespace icu4x {
     16 namespace capi {
     17    enum TransformResult {
     18      TransformResult_Modified = 0,
     19      TransformResult_Unmodified = 1,
     20    };
     21 
     22    typedef struct TransformResult_option {union { TransformResult ok; }; bool is_ok; } TransformResult_option;
     23 } // namespace capi
     24 } // namespace
     25 
     26 namespace icu4x {
     27 /**
     28 * See the [Rust documentation for `TransformResult`](https://docs.rs/icu/latest/icu/locale/enum.TransformResult.html) for more information.
     29 */
     30 class TransformResult {
     31 public:
     32  enum Value {
     33    Modified = 0,
     34    Unmodified = 1,
     35  };
     36 
     37  TransformResult() = default;
     38  // Implicit conversions between enum and ::Value
     39  constexpr TransformResult(Value v) : value(v) {}
     40  constexpr operator Value() const { return value; }
     41  // Prevent usage as boolean value
     42  explicit operator bool() const = delete;
     43 
     44  inline icu4x::capi::TransformResult AsFFI() const;
     45  inline static icu4x::TransformResult FromFFI(icu4x::capi::TransformResult c_enum);
     46 private:
     47    Value value;
     48 };
     49 
     50 } // namespace
     51 #endif // icu4x_TransformResult_D_HPP