Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_TrustedCommitmentTransactionNoneZ.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 public class Result_TrustedCommitmentTransactionNoneZ extends CommonBase {
9         private Result_TrustedCommitmentTransactionNoneZ(Object _dummy, long ptr) { super(ptr); }
10         protected void finalize() throws Throwable {
11                 if (ptr != 0) { bindings.CResult_TrustedCommitmentTransactionNoneZ_free(ptr); } super.finalize();
12         }
13
14         static Result_TrustedCommitmentTransactionNoneZ constr_from_ptr(long ptr) {
15                 if (bindings.LDKCResult_TrustedCommitmentTransactionNoneZ_result_ok(ptr)) {
16                         return new Result_TrustedCommitmentTransactionNoneZ_OK(null, ptr);
17                 } else {
18                         return new Result_TrustedCommitmentTransactionNoneZ_Err(null, ptr);
19                 }
20         }
21         public static final class Result_TrustedCommitmentTransactionNoneZ_OK extends Result_TrustedCommitmentTransactionNoneZ {
22                 public final TrustedCommitmentTransaction res;
23                 private Result_TrustedCommitmentTransactionNoneZ_OK(Object _dummy, long ptr) {
24                         super(_dummy, ptr);
25                         long res = bindings.LDKCResult_TrustedCommitmentTransactionNoneZ_get_ok(ptr);
26                         TrustedCommitmentTransaction res_hu_conv = new TrustedCommitmentTransaction(null, res);
27                         res_hu_conv.ptrs_to.add(this);
28                         this.res = res_hu_conv;
29                 }
30         }
31
32         public static final class Result_TrustedCommitmentTransactionNoneZ_Err extends Result_TrustedCommitmentTransactionNoneZ {
33                 private Result_TrustedCommitmentTransactionNoneZ_Err(Object _dummy, long ptr) {
34                         super(_dummy, ptr);
35                 }
36         }
37
38         /**
39          * Creates a new CResult_TrustedCommitmentTransactionNoneZ in the success state.
40          */
41         public static Result_TrustedCommitmentTransactionNoneZ constructor_ok(TrustedCommitmentTransaction o) {
42                 long ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_ok(o == null ? 0 : o.ptr & ~1);
43                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.constr_from_ptr(ret);
44                 ret_hu_conv.ptrs_to.add(o);
45                 // Due to rust's strict-ownership memory model, in some cases we need to "move"
46                 // an object to pass exclusive ownership to the function being called.
47                 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
48                 // at the FFI layer, creating a new object which Rust can claim ownership of
49                 // However, in some cases (eg here), there is no way to clone an object, and thus
50                 // we actually have to pass full ownership to Rust.
51                 // Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
52                 o.ptr = 0;
53                 return ret_hu_conv;
54         }
55
56         /**
57          * Creates a new CResult_TrustedCommitmentTransactionNoneZ in the error state.
58          */
59         public static Result_TrustedCommitmentTransactionNoneZ constructor_err() {
60                 long ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_err();
61                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.constr_from_ptr(ret);
62                 return ret_hu_conv;
63         }
64
65 }