lightningdevkit
Version:
Lightning Development Kit
68 lines • 2.75 kB
JavaScript
import { UpdateName } from '../structs/UpdateName.mjs';
import { CommonBase } from './CommonBase.mjs';
import * as bindings from '../bindings.mjs';
export class Result_UpdateNameIOErrorZ extends CommonBase {
constructor(_dummy, ptr) {
super(ptr, bindings.CResult_UpdateNameIOErrorZ_free);
}
/* @internal */
static constr_from_ptr(ptr) {
if (bindings.CResult_UpdateNameIOErrorZ_is_ok(ptr)) {
return new Result_UpdateNameIOErrorZ_OK(null, ptr);
}
else {
return new Result_UpdateNameIOErrorZ_Err(null, ptr);
}
}
/**
* Creates a new CResult_UpdateNameIOErrorZ in the success state.
*/
static constructor_ok(o) {
const ret = bindings.CResult_UpdateNameIOErrorZ_ok(CommonBase.get_ptr_of(o));
const ret_hu_conv = Result_UpdateNameIOErrorZ.constr_from_ptr(ret);
CommonBase.add_ref_from(ret_hu_conv, o);
// Due to rust's strict-ownership memory model, in some cases we need to "move"
// an object to pass exclusive ownership to the function being called.
// In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
// at the FFI layer, creating a new object which Rust can claim ownership of
// However, in some cases (eg here), there is no way to clone an object, and thus
// we actually have to pass full ownership to Rust.
// Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
CommonBase.set_null_skip_free(o);
;
return ret_hu_conv;
}
/**
* Creates a new CResult_UpdateNameIOErrorZ in the error state.
*/
static constructor_err(e) {
const ret = bindings.CResult_UpdateNameIOErrorZ_err(e);
const ret_hu_conv = Result_UpdateNameIOErrorZ.constr_from_ptr(ret);
return ret_hu_conv;
}
/**
* Checks if the given object is currently in the success state
*/
is_ok() {
const ret = bindings.CResult_UpdateNameIOErrorZ_is_ok(this.ptr);
return ret;
}
}
export class Result_UpdateNameIOErrorZ_OK extends Result_UpdateNameIOErrorZ {
/* @internal */
constructor(_dummy, ptr) {
super(_dummy, ptr);
const res = bindings.CResult_UpdateNameIOErrorZ_get_ok(ptr);
const res_hu_conv = new UpdateName(null, res);
CommonBase.add_ref_from(res_hu_conv, this);
this.res = res_hu_conv;
}
}
export class Result_UpdateNameIOErrorZ_Err extends Result_UpdateNameIOErrorZ {
/* @internal */
constructor(_dummy, ptr) {
super(_dummy, ptr);
this.err = bindings.CResult_UpdateNameIOErrorZ_get_err(ptr);
}
}
//# sourceMappingURL=Result_UpdateNameIOErrorZ.mjs.map