forked from rust-embedded/embedded-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e-io-adapters: add ToFmt: impl fmt::Write
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
//! Adapters to the `core::fmt::Write`. | ||
|
||
/// Adapter to the `core::fmt::Write` trait. | ||
#[derive(Clone, Default, PartialEq, Debug)] | ||
pub struct ToFmt<T: ?Sized> { | ||
inner: T, | ||
} | ||
|
||
impl<T> ToFmt<T> { | ||
/// Create a new adapter. | ||
pub fn new(inner: T) -> Self { | ||
Self { inner } | ||
} | ||
|
||
/// Consume the adapter, returning the inner object. | ||
pub fn into_inner(self) -> T { | ||
self.inner | ||
} | ||
} | ||
|
||
impl<T: ?Sized> ToFmt<T> { | ||
/// Borrow the inner object. | ||
pub fn inner(&self) -> &T { | ||
&self.inner | ||
} | ||
|
||
/// Mutably borrow the inner object. | ||
pub fn inner_mut(&mut self) -> &mut T { | ||
&mut self.inner | ||
} | ||
} | ||
|
||
impl<T: embedded_io::Write + ?Sized> core::fmt::Write for ToFmt<T> { | ||
fn write_str(&mut self, s: &str) -> core::fmt::Result { | ||
self.inner.write_all(s.as_bytes()).or(Err(core::fmt::Error)) | ||
} | ||
|
||
// Use fmt::Write default impls for | ||
// * write_fmt(): better here than e-io::Write::write_fmt | ||
// since we don't need to bother with saving the Error | ||
// * write_char(): would be the same | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters