1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
10 public class Result_LockedChannelMonitorNoneZ extends CommonBase {
11 private Result_LockedChannelMonitorNoneZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_LockedChannelMonitorNoneZ_free(ptr); } super.finalize();
16 static Result_LockedChannelMonitorNoneZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_LockedChannelMonitorNoneZ_is_ok(ptr)) {
18 return new Result_LockedChannelMonitorNoneZ_OK(null, ptr);
20 return new Result_LockedChannelMonitorNoneZ_Err(null, ptr);
23 public static final class Result_LockedChannelMonitorNoneZ_OK extends Result_LockedChannelMonitorNoneZ {
24 public final LockedChannelMonitor res;
25 private Result_LockedChannelMonitorNoneZ_OK(Object _dummy, long ptr) {
27 long res = bindings.CResult_LockedChannelMonitorNoneZ_get_ok(ptr);
28 org.ldk.structs.LockedChannelMonitor res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.LockedChannelMonitor(null, res); }
29 res_hu_conv.ptrs_to.add(this);
30 this.res = res_hu_conv;
34 public static final class Result_LockedChannelMonitorNoneZ_Err extends Result_LockedChannelMonitorNoneZ {
35 private Result_LockedChannelMonitorNoneZ_Err(Object _dummy, long ptr) {
41 * Creates a new CResult_LockedChannelMonitorNoneZ in the success state.
43 public static Result_LockedChannelMonitorNoneZ ok(LockedChannelMonitor o) {
44 long ret = bindings.CResult_LockedChannelMonitorNoneZ_ok(o == null ? 0 : o.ptr & ~1);
45 Reference.reachabilityFence(o);
46 if (ret >= 0 && ret <= 4096) { return null; }
47 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
48 ret_hu_conv.ptrs_to.add(o);
49 // Due to rust's strict-ownership memory model, in some cases we need to "move"
50 // an object to pass exclusive ownership to the function being called.
51 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
52 // at the FFI layer, creating a new object which Rust can claim ownership of
53 // However, in some cases (eg here), there is no way to clone an object, and thus
54 // we actually have to pass full ownership to Rust.
55 // Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
61 * Creates a new CResult_LockedChannelMonitorNoneZ in the error state.
63 public static Result_LockedChannelMonitorNoneZ err() {
64 long ret = bindings.CResult_LockedChannelMonitorNoneZ_err();
65 if (ret >= 0 && ret <= 4096) { return null; }
66 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
71 * Checks if the given object is currently in the success state
73 public boolean is_ok() {
74 boolean ret = bindings.CResult_LockedChannelMonitorNoneZ_is_ok(this.ptr);
75 Reference.reachabilityFence(this);