[−][src]Trait cortex_m_log::printer::Printer
Generic Printer trait
Associated Types
type W: Write
type M: InterruptModer
Required methods
fn destination(&mut self) -> &mut Self::W
Returns destination writer.
Used by print and println default
impls
Provided methods
fn print(&mut self, args: Arguments)
Prints formatted output to destination
fn println(&mut self, args: Arguments)
Prints formatted output to destination with newline
Implementors
impl Printer for Dummy[src]
type W = Dummy
type M = InterruptFree
fn destination(&mut self) -> &mut Self::W[src]
fn print(&mut self, _: Arguments)[src]
fn println(&mut self, _: Arguments)[src]
impl<Mode: InterruptModer> Printer for Itm<Mode>[src]
type W = Itm
type M = Mode
fn destination(&mut self) -> &mut Self::W[src]
fn print(&mut self, args: Arguments)[src]
fn println(&mut self, args: Arguments)[src]
impl<Mode: InterruptModer> Printer for ItmSync<Mode>[src]
type W = Itm
type M = Mode
fn destination(&mut self) -> &mut Self::W[src]
fn print(&mut self, args: Arguments)[src]
Prints formatted output to destination
fn println(&mut self, args: Arguments)[src]
Prints formatted output to destination with newline