2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
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();
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);
15 return new Result_TrustedCommitmentTransactionNoneZ_Err(null, ptr);
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) {
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;
29 public static final class Result_TrustedCommitmentTransactionNoneZ_Err extends Result_TrustedCommitmentTransactionNoneZ {
30 private Result_TrustedCommitmentTransactionNoneZ_Err(Object _dummy, long ptr) {
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.
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);