docs.rs failed to build rong_event-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
rong_event-0.1.1
rong_event
Implements Web-standard events and a Node.js-style EventEmitter.
JS APIs
Event— base event classnew Event(type, options?)— create an eventtype/bubbles/cancelable/composed— event properties
CustomEvent— event with custom data (extendsEvent)new CustomEvent(type, options?)— create with optionaldetaildetail— custom event data
EventTarget— Web-standard event targetaddEventListener(type, listener, options?)— add a listenerremoveEventListener(type, listener, options?)— remove a listenerdispatchEvent(event)— dispatch an event
EventEmitter— Node.js-style emitter (extendsEventTarget)on(event, listener)/once(event, listener)— add listenersoff(event, listener)/removeListener(event, listener)— remove listenersremoveAllListeners(event?)— remove all listenersprependListener(event, listener)/prependOnceListener(event, listener)— add at frontemit(event, ...args)— emit an eventeventNames()— list registered event nameslistenerCount(event, listener?)— count listenerssetMaxListeners(n)/getMaxListeners()— configure listener limit