pub trait Default<Word>: Write<Word> { }
Expand description
Marker trait to opt into default blocking write implementation
Implementers of serial::Write
can implement this marker trait
for their type. Doing so will automatically provide the default
implementation of blocking::serial::Write
for the type.