Update auto-generated bindings
[ldk-java] / ts / structs / Result_TrustedCommitmentTransactionNoneZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_TrustedCommitmentTransactionNoneZ extends CommonBase {
6         private Result_TrustedCommitmentTransactionNoneZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_TrustedCommitmentTransactionNoneZ_free(ptr); } super.finalize();
9         }
10
11         static Result_TrustedCommitmentTransactionNoneZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_TrustedCommitmentTransactionNoneZ_result_ok(ptr)) {
13                         return new Result_TrustedCommitmentTransactionNoneZ_OK(null, ptr);
14                 } else {
15                         return new Result_TrustedCommitmentTransactionNoneZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_TrustedCommitmentTransactionNoneZ_OK extends Result_TrustedCommitmentTransactionNoneZ {
19                 public final TrustedCommitmentTransaction res;
20                 private Result_TrustedCommitmentTransactionNoneZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_TrustedCommitmentTransactionNoneZ_get_ok(ptr);
23                         const res_hu_conv: TrustedCommitmentTransaction = new TrustedCommitmentTransaction(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_TrustedCommitmentTransactionNoneZ_Err extends Result_TrustedCommitmentTransactionNoneZ {
30                 private Result_TrustedCommitmentTransactionNoneZ_Err(Object _dummy, long ptr) {
31                         super(_dummy, ptr);
32                 }
33         }
34
35         public static Result_TrustedCommitmentTransactionNoneZ constructor__ok(TrustedCommitmentTransaction o) {
36                 number ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_ok(o == null ? 0 : o.ptr & ~1);
37                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.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_TrustedCommitmentTransactionNoneZ constructor__err() {
51                 number ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_err();
52                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.constr_from_ptr(ret);
53                 return ret_hu_conv;
54         }
55
56 }