X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FResult_CVec_u8ZPeerHandleErrorZ.ts;h=a5ef5951cb7f74538532aae5919073eba1671dc2;hb=c284885e498d8783eff4c224410f16d9be63ad91;hp=daa927a5966aa7793231a3e66a81cb4ddf9cab48;hpb=acecce750cf1159a51f9d1a4dbfd717520739e92;p=ldk-java diff --git a/ts/structs/Result_CVec_u8ZPeerHandleErrorZ.ts b/ts/structs/Result_CVec_u8ZPeerHandleErrorZ.ts index daa927a5..a5ef5951 100644 --- a/ts/structs/Result_CVec_u8ZPeerHandleErrorZ.ts +++ b/ts/structs/Result_CVec_u8ZPeerHandleErrorZ.ts @@ -21,9 +21,6 @@ public class Result_CVec_u8ZPeerHandleErrorZ extends CommonBase { super(_dummy, ptr); this.res = bindings.LDKCResult_CVec_u8ZPeerHandleErrorZ_get_ok(ptr); } - public Result_CVec_u8ZPeerHandleErrorZ_OK(Uint8Array res) { - this(null, bindings.CResult_CVec_u8ZPeerHandleErrorZ_ok(res)); - } } public static final class Result_CVec_u8ZPeerHandleErrorZ_Err extends Result_CVec_u8ZPeerHandleErrorZ { @@ -32,11 +29,27 @@ public class Result_CVec_u8ZPeerHandleErrorZ extends CommonBase { super(_dummy, ptr); number err = bindings.LDKCResult_CVec_u8ZPeerHandleErrorZ_get_err(ptr); const err_hu_conv: PeerHandleError = new PeerHandleError(null, err); + err_hu_conv.ptrs_to.add(this); this.err = err_hu_conv; } - public Result_CVec_u8ZPeerHandleErrorZ_Err(PeerHandleError err) { - this(null, bindings.CResult_CVec_u8ZPeerHandleErrorZ_err(err == null ? 0 : err.ptr & ~1)); - this.ptrs_to.add(err); - } } + + public static Result_CVec_u8ZPeerHandleErrorZ constructor_ok(Uint8Array o) { + number ret = bindings.CResult_CVec_u8ZPeerHandleErrorZ_ok(o); + Result_CVec_u8ZPeerHandleErrorZ ret_hu_conv = Result_CVec_u8ZPeerHandleErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + public static Result_CVec_u8ZPeerHandleErrorZ constructor_err(PeerHandleError e) { + number ret = bindings.CResult_CVec_u8ZPeerHandleErrorZ_err(e == null ? 0 : e.ptr & ~1); + Result_CVec_u8ZPeerHandleErrorZ ret_hu_conv = Result_CVec_u8ZPeerHandleErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + public Result_CVec_u8ZPeerHandleErrorZ clone() { + number ret = bindings.CResult_CVec_u8ZPeerHandleErrorZ_clone(this.ptr); + Result_CVec_u8ZPeerHandleErrorZ ret_hu_conv = Result_CVec_u8ZPeerHandleErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }