798db4f52b2f7f6cc3a271976c4abe3246839f4b
[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                 public Result_TrustedCommitmentTransactionNoneZ_OK(TrustedCommitmentTransaction res) {
28                         this(null, bindings.CResult_TrustedCommitmentTransactionNoneZ_ok(res == null ? 0 : res.ptr & ~1));
29                         this.ptrs_to.add(res);
30                         // Due to rust's strict-ownership memory model, in some cases we need to "move"
31                         // an object to pass exclusive ownership to the function being called.
32                         // In most cases, we avoid this being visible in GC'd languages by cloning the object
33                         // at the FFI layer, creating a new object which Rust can claim ownership of
34                         // However, in some cases (eg here), there is no way to clone an object, and thus
35                         // we actually have to pass full ownership to Rust.
36                         // Thus, after this call, res is reset to null and is now a dummy object.
37                         res.ptr = 0;
38                 }
39         }
40
41         public static final class Result_TrustedCommitmentTransactionNoneZ_Err extends Result_TrustedCommitmentTransactionNoneZ {
42                 private Result_TrustedCommitmentTransactionNoneZ_Err(Object _dummy, long ptr) {
43                         super(_dummy, ptr);
44                 }
45                 public Result_TrustedCommitmentTransactionNoneZ_Err() {
46                         this(null, bindings.CResult_TrustedCommitmentTransactionNoneZ_err());
47                 }
48         }
49 }