Trait WriteDjs

Source
pub trait WriteDjs: WriteJson {
    // Provided method
    fn write_djs<D: Dealloc>(&mut self, any: Any<D>, common_js: bool) -> Result { ... }
}

Provided Methods§

Source

fn write_djs<D: Dealloc>(&mut self, any: Any<D>, common_js: bool) -> Result

Writes a DAG referred by any with const definitions for objects, arrays that are referred multiple times.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§