We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ufmt
1 parent 639c165 commit 3b72afbCopy full SHA for 3b72afb
src/ufmt.rs
@@ -1,5 +1,5 @@
1
use crate::{
2
- c_string::CString,
+ c_string::{self, CString},
3
string::{StringInner, StringStorage},
4
vec::{VecInner, VecStorage},
5
CapacityError,
@@ -36,7 +36,7 @@ impl<S: VecStorage<u8> + ?Sized> uWrite for VecInner<u8, S> {
36
}
37
38
impl<const N: usize> uWrite for CString<N> {
39
- type Error = CapacityError;
+ type Error = c_string::ExtendError;
40
41
#[inline]
42
fn write_str(&mut self, s: &str) -> Result<(), Self::Error> {
0 commit comments