DataError.d.ts (802B)
1 // generated by diplomat-tool 2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 /** 6 * 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) 7 */ 8 9 10 export class DataError { 11 12 static fromValue(value: DataError | string): DataError; 13 14 get value(): string; 15 16 get ffiValue(): number; 17 18 static Unknown : DataError; 19 static MarkerNotFound : DataError; 20 static IdentifierNotFound : DataError; 21 static InvalidRequest : DataError; 22 static InconsistentData : DataError; 23 static Downcast : DataError; 24 static Deserialize : DataError; 25 static Custom : DataError; 26 static Io : DataError; 27 28 29 constructor(value: DataError | string ); 30 }