Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::{context::*, depict::*};

use std::io::*;

impl<BoxedT> Depict for Box<BoxedT>
where
    BoxedT: Depict,
{
    fn depict<WriteT>(&self, writer: &mut WriteT, context: &DepictionContext) -> Result<()>
    where
        WriteT: Write,
    {
        self.as_ref().depict(writer, context)
    }
}