[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Result_NoneLightningErrorZ.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_NoneLightningErrorZ : CommonBase {
9         Result_NoneLightningErrorZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_NoneLightningErrorZ() {
11                 if (ptr != 0) { bindings.CResult_NoneLightningErrorZ_free(ptr); }
12         }
13
14         internal static Result_NoneLightningErrorZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_NoneLightningErrorZ_is_ok(ptr)) {
16                         return new Result_NoneLightningErrorZ_OK(null, ptr);
17                 } else {
18                         return new Result_NoneLightningErrorZ_Err(null, ptr);
19                 }
20         }
21         public class Result_NoneLightningErrorZ_OK : Result_NoneLightningErrorZ {
22                 internal Result_NoneLightningErrorZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
23                 }
24         }
25
26         public class Result_NoneLightningErrorZ_Err : Result_NoneLightningErrorZ {
27                 public readonly LightningError err;
28                 internal Result_NoneLightningErrorZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
29                         long err = bindings.CResult_NoneLightningErrorZ_get_err(ptr);
30                         org.ldk.structs.LightningError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new org.ldk.structs.LightningError(null, err); }
31                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.AddLast(this); };
32                         this.err = err_hu_conv;
33                 }
34         }
35
36         /**
37          * Creates a new CResult_NoneLightningErrorZ in the success state.
38          */
39         public static Result_NoneLightningErrorZ ok() {
40                 long ret = bindings.CResult_NoneLightningErrorZ_ok();
41                 if (ret >= 0 && ret <= 4096) { return null; }
42                 Result_NoneLightningErrorZ ret_hu_conv = Result_NoneLightningErrorZ.constr_from_ptr(ret);
43                 return ret_hu_conv;
44         }
45
46         /**
47          * Creates a new CResult_NoneLightningErrorZ in the error state.
48          */
49         public static Result_NoneLightningErrorZ err(org.ldk.structs.LightningError e) {
50                 long ret = bindings.CResult_NoneLightningErrorZ_err(e == null ? 0 : e.ptr);
51                 GC.KeepAlive(e);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_NoneLightningErrorZ ret_hu_conv = Result_NoneLightningErrorZ.constr_from_ptr(ret);
54                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(e); };
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Checks if the given object is currently in the success state
60          */
61         public bool is_ok() {
62                 bool ret = bindings.CResult_NoneLightningErrorZ_is_ok(this.ptr);
63                 GC.KeepAlive(this);
64                 return ret;
65         }
66
67         internal long clone_ptr() {
68                 long ret = bindings.CResult_NoneLightningErrorZ_clone_ptr(this.ptr);
69                 GC.KeepAlive(this);
70                 return ret;
71         }
72
73         /**
74          * Creates a new CResult_NoneLightningErrorZ which has the same data as `orig`
75          * but with all dynamically-allocated buffers duplicated in new buffers.
76          */
77         public Result_NoneLightningErrorZ clone() {
78                 long ret = bindings.CResult_NoneLightningErrorZ_clone(this.ptr);
79                 GC.KeepAlive(this);
80                 if (ret >= 0 && ret <= 4096) { return null; }
81                 Result_NoneLightningErrorZ ret_hu_conv = Result_NoneLightningErrorZ.constr_from_ptr(ret);
82                 return ret_hu_conv;
83         }
84
85 }
86 } } }