Update auto-generated bindings
[ldk-java] / ts / structs / Result_ScorerDecodeErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_ScorerDecodeErrorZ extends CommonBase {
6         private Result_ScorerDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_ScorerDecodeErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_ScorerDecodeErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.CResult_ScorerDecodeErrorZ_is_ok(ptr)) {
13                         return new Result_ScorerDecodeErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_ScorerDecodeErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_ScorerDecodeErrorZ_OK extends Result_ScorerDecodeErrorZ {
19                 public final Scorer res;
20                 private Result_ScorerDecodeErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_ScorerDecodeErrorZ_get_ok(ptr);
23                         const res_hu_conv: Scorer = new Scorer(null, res);
24                         res_hu_conv.ptrs_to.add(this);
25                         this.res = res_hu_conv;
26                 }
27         }
28
29         public static final class Result_ScorerDecodeErrorZ_Err extends Result_ScorerDecodeErrorZ {
30                 public final DecodeError err;
31                 private Result_ScorerDecodeErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         number err = bindings.LDKCResult_ScorerDecodeErrorZ_get_err(ptr);
34                         const err_hu_conv: DecodeError = new DecodeError(null, err);
35                         err_hu_conv.ptrs_to.add(this);
36                         this.err = err_hu_conv;
37                 }
38         }
39
40         public static Result_ScorerDecodeErrorZ constructor_ok(ScoringParameters o_params) {
41                 number ret = bindings.CResult_ScorerDecodeErrorZ_ok(bindings.Scorer_new(o_params == null ? 0 : o_params.ptr & ~1));
42                 Result_ScorerDecodeErrorZ ret_hu_conv = Result_ScorerDecodeErrorZ.constr_from_ptr(ret);
43                 ret_hu_conv.ptrs_to.add(o_params);
44 // Due to rust's strict-ownership memory model, in some cases we need to "move"
45 // an object to pass exclusive ownership to the function being called.
46 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
47 // at the FFI layer, creating a new object which Rust can claim ownership of
48 // However, in some cases (eg here), there is no way to clone an object, and thus
49 // we actually have to pass full ownership to Rust.
50 // Thus, after ret_hu_conv call, o_params is reset to null and is now a dummy object.
51 o_params.ptr = 0;
52                 return ret_hu_conv;
53         }
54
55         public static Result_ScorerDecodeErrorZ constructor_err(DecodeError e) {
56                 number ret = bindings.CResult_ScorerDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
57                 Result_ScorerDecodeErrorZ ret_hu_conv = Result_ScorerDecodeErrorZ.constr_from_ptr(ret);
58                 return ret_hu_conv;
59         }
60
61         public boolean is_ok() {
62                 boolean ret = bindings.CResult_ScorerDecodeErrorZ_is_ok(this.ptr);
63                 return ret;
64         }
65
66 }