Trait IterPrint

Source
pub trait IterPrint {
    // Required method
    fn iter_print<W, S>(
        self,
        writer: &mut W,
        sep: S,
        is_head: bool,
    ) -> Result<(), Error>
       where W: Write,
             S: Display;
}

Required Methods§

Source

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

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 IterPrint for ()

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A> IterPrint for (A,)
where A: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B> IterPrint for (A, B)
where A: Display, B: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C> IterPrint for (A, B, C)
where A: Display, B: Display, C: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D> IterPrint for (A, B, C, D)
where A: Display, B: Display, C: Display, D: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E> IterPrint for (A, B, C, D, E)
where A: Display, B: Display, C: Display, D: Display, E: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F> IterPrint for (A, B, C, D, E, F)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F, G> IterPrint for (A, B, C, D, E, F, G)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display, G: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F, G, H> IterPrint for (A, B, C, D, E, F, G, H)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display, G: Display, H: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F, G, H, I> IterPrint for (A, B, C, D, E, F, G, H, I)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display, G: Display, H: Display, I: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F, G, H, I, J> IterPrint for (A, B, C, D, E, F, G, H, I, J)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display, G: Display, H: Display, I: Display, J: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Source§

impl<A, B, C, D, E, F, G, H, I, J, K> IterPrint for (A, B, C, D, E, F, G, H, I, J, K)
where A: Display, B: Display, C: Display, D: Display, E: Display, F: Display, G: Display, H: Display, I: Display, J: Display, K: Display,

Source§

fn iter_print<W, S>( self, writer: &mut W, sep: S, is_head: bool, ) -> Result<(), Error>
where W: Write, S: Display,

Implementors§