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