struct PROMISE [src]
Members
- FULFILL (Constant)
- MATCH (Constant)
- MATCH_RELEASE (Constant)
- REJECT (Constant)
Source
pub const PROMISE = struct {
pub const FULFILL = 0;
pub const MATCH = 1;
pub const MATCH_RELEASE = 2;
pub const REJECT = 3;
}