DumpComponent

Trait DumpComponent 

Source
pub trait DumpComponent: RegionCore {
    // Required method
    fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>;
}

Required Methods§

Source

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

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.

Implementations on Foreign Types§

Source§

impl<A: Region + Serializable, B: Region + Serializable> DumpComponent for (A, B)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable> DumpComponent for (A, B, C)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable> DumpComponent for (A, B, C, D)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable> DumpComponent for (A, B, C, D, E)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable> DumpComponent for (A, B, C, D, E, F)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable, G: Region + Serializable> DumpComponent for (A, B, C, D, E, F, G)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable, G: Region + Serializable, H: Region + Serializable> DumpComponent for (A, B, C, D, E, F, G, H)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable, G: Region + Serializable, H: Region + Serializable, I: Region + Serializable> DumpComponent for (A, B, C, D, E, F, G, H, I)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable, G: Region + Serializable, H: Region + Serializable, I: Region + Serializable, J: Region + Serializable> DumpComponent for (A, B, C, D, E, F, G, H, I, J)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Source§

impl<A: Region + Serializable, B: Region + Serializable, C: Region + Serializable, D: Region + Serializable, E: Region + Serializable, F: Region + Serializable, G: Region + Serializable, H: Region + Serializable, I: Region + Serializable, J: Region + Serializable, K: Region + Serializable> DumpComponent for (A, B, C, D, E, F, G, H, I, J, K)

Source§

fn dump_component<W: Write>(&self, idx: usize, fp: W) -> Result<()>

Implementors§