[C#] Drop reference to `assert` which makes building on Win hard
[ldk-java] / c_sharp / src / org / ldk / structs / Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8 public class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ : CommonBase {
9         Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ() {
11                 if (ptr != 0) { bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(ptr); }
12         }
13
14         internal static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_is_ok(ptr)) {
16                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(null, ptr);
17                 } else {
18                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(null, ptr);
19                 }
20         }
21         public class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK : Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
22                 public readonly TwoTuple_BlockHashChannelMonitorZ res;
23                 internal Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
24                         long res = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(ptr);
25                         TwoTuple_BlockHashChannelMonitorZ res_hu_conv = new TwoTuple_BlockHashChannelMonitorZ(null, res);
26                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.AddLast(this); };
27                         this.res = res_hu_conv;
28                 }
29         }
30
31         public class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err : Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
32                 public readonly DecodeError err;
33                 internal Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
34                         long err = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(ptr);
35                         org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
36                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.AddLast(this); };
37                         this.err = err_hu_conv;
38                 }
39         }
40
41         /**
42          * Creates a new CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ in the success state.
43          */
44         public static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ok(org.ldk.structs.TwoTuple_BlockHashChannelMonitorZ o) {
45                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(o != null ? o.ptr : 0);
46                 GC.KeepAlive(o);
47                 if (ret >= 0 && ret <= 4096) { return null; }
48                 Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ret_hu_conv = Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.constr_from_ptr(ret);
49                 return ret_hu_conv;
50         }
51
52         /**
53          * Creates a new CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ in the error state.
54          */
55         public static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ err(org.ldk.structs.DecodeError e) {
56                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(e.ptr);
57                 GC.KeepAlive(e);
58                 if (ret >= 0 && ret <= 4096) { return null; }
59                 Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ret_hu_conv = Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.constr_from_ptr(ret);
60                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(e); };
61                 return ret_hu_conv;
62         }
63
64         /**
65          * Checks if the given object is currently in the success state
66          */
67         public bool is_ok() {
68                 bool ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_is_ok(this.ptr);
69                 GC.KeepAlive(this);
70                 return ret;
71         }
72
73         internal long clone_ptr() {
74                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone_ptr(this.ptr);
75                 GC.KeepAlive(this);
76                 return ret;
77         }
78
79         /**
80          * Creates a new CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ which has the same data as `orig`
81          * but with all dynamically-allocated buffers duplicated in new buffers.
82          */
83         public Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ clone() {
84                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone(this.ptr);
85                 GC.KeepAlive(this);
86                 if (ret >= 0 && ret <= 4096) { return null; }
87                 Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ret_hu_conv = Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.constr_from_ptr(ret);
88                 return ret_hu_conv;
89         }
90
91 }
92 } } }