pub trait IPreviewHandlerVisuals_Impl: Sized {
    // Required methods
    fn SetBackgroundColor(&self, color: COLORREF) -> Result<()>;
    fn SetFont(&self, plf: *const LOGFONTW) -> Result<()>;
    fn SetTextColor(&self, color: COLORREF) -> Result<()>;
}

Required Methods§

fn SetBackgroundColor(&self, color: COLORREF) -> Result<()>

fn SetFont(&self, plf: *const LOGFONTW) -> Result<()>

fn SetTextColor(&self, color: COLORREF) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§