Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* Additional information: [1](https://docs.rs/icu_provider/latest/icu_provider/struct.DataError.html), [2](https://docs.rs/icu_provider/latest/icu_provider/enum.DataErrorKind.html)
*/
export class DataError {
static fromValue(value: DataError | string): DataError;
get value(): string;
get ffiValue(): number;
static Unknown : DataError;
static MarkerNotFound : DataError;
static IdentifierNotFound : DataError;
static InvalidRequest : DataError;
static InconsistentData : DataError;
static Downcast : DataError;
static Deserialize : DataError;
static Custom : DataError;
static Io : DataError;
constructor(value: DataError | string );
}