pub(crate) type UnderlyingSink = UnderlyingSink<DomTypeHolder>;
struct UnderlyingSink {
pub(crate) abort: Option<Rc<UnderlyingSinkAbortCallback<DomTypeHolder>>>,
pub(crate) close: Option<Rc<UnderlyingSinkCloseCallback<DomTypeHolder>>>,
pub(crate) start: Option<Rc<UnderlyingSinkStartCallback<DomTypeHolder>>>,
pub(crate) type_: RootedTraceableBox<Heap<Value>>,
pub(crate) write: Option<Rc<UnderlyingSinkWriteCallback<DomTypeHolder>>>,
}
Implementations
Trait Implementations
Returns the “default value” for a type.
Read more
Convert self
to a JSVal
. JSAPI failure causes a panic.