]> git.bitcoin.ninja Git - ldk-java/blob - c_sharp/src/org/ldk/structs/Result_RecipientOnionFieldsNoneZ.cs
Update CI references to LDK 0.0.124 drop stale memchr pins
[ldk-java] / c_sharp / src / org / ldk / structs / Result_RecipientOnionFieldsNoneZ.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_RecipientOnionFieldsNoneZ : CommonBase {
9         Result_RecipientOnionFieldsNoneZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_RecipientOnionFieldsNoneZ() {
11                 if (ptr != 0) { bindings.CResult_RecipientOnionFieldsNoneZ_free(ptr); }
12         }
13
14         internal static Result_RecipientOnionFieldsNoneZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_RecipientOnionFieldsNoneZ_is_ok(ptr)) {
16                         return new Result_RecipientOnionFieldsNoneZ_OK(null, ptr);
17                 } else {
18                         return new Result_RecipientOnionFieldsNoneZ_Err(null, ptr);
19                 }
20         }
21         public class Result_RecipientOnionFieldsNoneZ_OK : Result_RecipientOnionFieldsNoneZ {
22                 public readonly RecipientOnionFields res;
23                 internal Result_RecipientOnionFieldsNoneZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
24                         long res = bindings.CResult_RecipientOnionFieldsNoneZ_get_ok(ptr);
25                         org.ldk.structs.RecipientOnionFields res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.RecipientOnionFields(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_RecipientOnionFieldsNoneZ_Err : Result_RecipientOnionFieldsNoneZ {
32                 internal Result_RecipientOnionFieldsNoneZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
33                 }
34         }
35
36         /**
37          * Creates a new CResult_RecipientOnionFieldsNoneZ in the success state.
38          */
39         public static Result_RecipientOnionFieldsNoneZ ok(org.ldk.structs.RecipientOnionFields o) {
40                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_ok(o.ptr);
41                 GC.KeepAlive(o);
42                 if (ret >= 0 && ret <= 4096) { return null; }
43                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
44                 return ret_hu_conv;
45         }
46
47         /**
48          * Creates a new CResult_RecipientOnionFieldsNoneZ in the error state.
49          */
50         public static Result_RecipientOnionFieldsNoneZ err() {
51                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_err();
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
54                 return ret_hu_conv;
55         }
56
57         /**
58          * Checks if the given object is currently in the success state
59          */
60         public bool is_ok() {
61                 bool ret = bindings.CResult_RecipientOnionFieldsNoneZ_is_ok(this.ptr);
62                 GC.KeepAlive(this);
63                 return ret;
64         }
65
66         internal long clone_ptr() {
67                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_clone_ptr(this.ptr);
68                 GC.KeepAlive(this);
69                 return ret;
70         }
71
72         /**
73          * Creates a new CResult_RecipientOnionFieldsNoneZ which has the same data as `orig`
74          * but with all dynamically-allocated buffers duplicated in new buffers.
75          */
76         public Result_RecipientOnionFieldsNoneZ clone() {
77                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_clone(this.ptr);
78                 GC.KeepAlive(this);
79                 if (ret >= 0 && ret <= 4096) { return null; }
80                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
81                 return ret_hu_conv;
82         }
83
84 }
85 } } }