[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Option_C2Tuple_u64u16ZZ.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 /**
9  * An enum which can either contain a crate::c_types::derived::C2Tuple_u64u16Z or not
10  */
11 public class Option_C2Tuple_u64u16ZZ : CommonBase {
12         protected Option_C2Tuple_u64u16ZZ(object _dummy, long ptr) : base(ptr) { }
13         ~Option_C2Tuple_u64u16ZZ() {
14                 if (ptr != 0) { bindings.COption_C2Tuple_u64u16ZZ_free(ptr); }
15         }
16
17         internal static Option_C2Tuple_u64u16ZZ constr_from_ptr(long ptr) {
18                 long raw_ty = bindings.LDKCOption_C2Tuple_u64u16ZZ_ty_from_ptr(ptr);
19                 switch (raw_ty) {
20                         case 0: return new Option_C2Tuple_u64u16ZZ_Some(ptr);
21                         case 1: return new Option_C2Tuple_u64u16ZZ_None(ptr);
22                         default:
23                                 throw new ArgumentException("Impossible enum variant");
24                 }
25         }
26
27         /** A Option_C2Tuple_u64u16ZZ of type Some */
28         public class Option_C2Tuple_u64u16ZZ_Some : Option_C2Tuple_u64u16ZZ {
29                 public TwoTuple_u64u16Z some;
30                 internal Option_C2Tuple_u64u16ZZ_Some(long ptr) : base(null, ptr) {
31                         long some = bindings.LDKCOption_C2Tuple_u64u16ZZ_Some_get_some(ptr);
32                         TwoTuple_u64u16Z some_hu_conv = new TwoTuple_u64u16Z(null, some);
33                         if (some_hu_conv != null) { some_hu_conv.ptrs_to.AddLast(this); };
34                         this.some = some_hu_conv;
35                 }
36         }
37         /** A Option_C2Tuple_u64u16ZZ of type None */
38         public class Option_C2Tuple_u64u16ZZ_None : Option_C2Tuple_u64u16ZZ {
39                 internal Option_C2Tuple_u64u16ZZ_None(long ptr) : base(null, ptr) {
40                 }
41         }
42         /**
43          * Constructs a new COption_C2Tuple_u64u16ZZ containing a crate::c_types::derived::C2Tuple_u64u16Z
44          */
45         public static Option_C2Tuple_u64u16ZZ some(org.ldk.structs.TwoTuple_u64u16Z o) {
46                 long ret = bindings.COption_C2Tuple_u64u16ZZ_some(o != null ? o.ptr : 0);
47                 GC.KeepAlive(o);
48                 if (ret >= 0 && ret <= 4096) { return null; }
49                 org.ldk.structs.Option_C2Tuple_u64u16ZZ ret_hu_conv = org.ldk.structs.Option_C2Tuple_u64u16ZZ.constr_from_ptr(ret);
50                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
51                 return ret_hu_conv;
52         }
53
54         /**
55          * Constructs a new COption_C2Tuple_u64u16ZZ containing nothing
56          */
57         public static Option_C2Tuple_u64u16ZZ none() {
58                 long ret = bindings.COption_C2Tuple_u64u16ZZ_none();
59                 if (ret >= 0 && ret <= 4096) { return null; }
60                 org.ldk.structs.Option_C2Tuple_u64u16ZZ ret_hu_conv = org.ldk.structs.Option_C2Tuple_u64u16ZZ.constr_from_ptr(ret);
61                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
62                 return ret_hu_conv;
63         }
64
65         internal long clone_ptr() {
66                 long ret = bindings.COption_C2Tuple_u64u16ZZ_clone_ptr(this.ptr);
67                 GC.KeepAlive(this);
68                 return ret;
69         }
70
71         /**
72          * Creates a new COption_C2Tuple_u64u16ZZ which has the same data as `orig`
73          * but with all dynamically-allocated buffers duplicated in new buffers.
74          */
75         public Option_C2Tuple_u64u16ZZ clone() {
76                 long ret = bindings.COption_C2Tuple_u64u16ZZ_clone(this.ptr);
77                 GC.KeepAlive(this);
78                 if (ret >= 0 && ret <= 4096) { return null; }
79                 org.ldk.structs.Option_C2Tuple_u64u16ZZ ret_hu_conv = org.ldk.structs.Option_C2Tuple_u64u16ZZ.constr_from_ptr(ret);
80                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
81                 return ret_hu_conv;
82         }
83
84 }
85 } } }