/// A general error that can occur when working with UUIDs. #[derive(Clone, Debug, Eq, Hash, PartialEq)] pubstruct Error(pub(crate) ErrorKind);
#[derive(Clone, Debug, Eq, Hash, PartialEq)] pub(crate) enum ErrorKind { /// Invalid character in the [`Uuid`] string. /// /// [`Uuid`]: ../struct.Uuid.html
Char { character: char, index: usize }, /// A simple [`Uuid`] didn't contain 32 characters. /// /// [`Uuid`]: ../struct.Uuid.html
SimpleLength { len: usize }, /// A byte array didn't contain 16 bytes
ByteLength { len: usize }, /// A hyphenated [`Uuid`] didn't contain 5 groups /// /// [`Uuid`]: ../struct.Uuid.html
GroupCount { count: usize }, /// A hyphenated [`Uuid`] had a group that wasn't the right length /// /// [`Uuid`]: ../struct.Uuid.html
GroupLength {
group: usize,
len: usize,
index: usize,
}, /// The input was not a valid UTF8 string
InvalidUTF8, /// Some other error occurred.
Other,
}
/// A string that is guaranteed to fail to parse to a [`Uuid`]. /// /// This type acts as a lightweight error indicator, suggesting /// that the string cannot be parsed but offering no error /// details. To get details, use `InvalidUuid::into_err`. /// /// [`Uuid`]: ../struct.Uuid.html #[derive(Clone, Debug, Eq, Hash, PartialEq)] pubstruct InvalidUuid<'a>(pub(crate) &'a [u8]);
impl<'a> InvalidUuid<'a> { /// Converts the lightweight error type into detailed diagnostics. pubfn into_err(self) -> Error { // Check whether or not the input was ever actually a valid UTF8 string let input_str = match std::str::from_utf8(self.0) {
Ok(s) => s,
Err(_) => return Error(ErrorKind::InvalidUTF8),
};
let (uuid_str, offset, simple) = match input_str.as_bytes() {
[b'{', s @ .., b'}'] => (s, 1, false),
[b'u', b'r', b'n', b':', b'u', b'u', b'i', b'd', b':', s @ ..] => {
(s, "urn:uuid:".len(), false)
}
s => (s, 0, true),
};
// SAFETY: the byte array came from a valid utf8 string, // and is aligned along char boundaries. let uuid_str = unsafe { std::str::from_utf8_unchecked(uuid_str) };
for (index, character) in uuid_str.char_indices() { let byte = character as u8; if character as u32 - byte as u32 > 0 { // Multibyte char return Error(ErrorKind::Char {
character,
index: index + offset + 1,
});
} elseif byte == b'-' { // While we search, also count group breaks if hyphen_count < 4 {
group_bounds[hyphen_count] = index;
}
hyphen_count += 1;
} elseif !matches!(byte, b'0'..=b'9' | b'a'..=b'f' | b'A'..=b'F') { // Non-hex char return Error(ErrorKind::Char {
character: byte as char,
index: index + offset + 1,
});
}
}
if hyphen_count == 0 && simple { // This means that we tried and failed to parse a simple uuid. // Since we verified that all the characters are valid, this means // that it MUST have an invalid length.
Error(ErrorKind::SimpleLength {
len: input_str.len(),
})
} elseif hyphen_count != 4 { // We tried to parse a hyphenated variant, but there weren't // 5 groups (4 hyphen splits).
Error(ErrorKind::GroupCount {
count: hyphen_count + 1,
})
} else { // There are 5 groups, one of them has an incorrect length const BLOCK_STARTS: [usize; 5] = [0, 9, 14, 19, 24]; for i in0..4 { if group_bounds[i] != BLOCK_STARTS[i + 1] - 1 { return Error(ErrorKind::GroupLength {
group: i,
len: group_bounds[i] - BLOCK_STARTS[i],
index: offset + BLOCK_STARTS[i] + 1,
});
}
}
// The last group must be too long
Error(ErrorKind::GroupLength {
group: 4,
len: input_str.len() - BLOCK_STARTS[4],
index: offset + BLOCK_STARTS[4] + 1,
})
}
}
}
// NOTE: This impl is part of the public API. Breaking changes to it should be carefully considered impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { matchself.0 {
ErrorKind::Char {
character, index, ..
} => {
write!(f, "invalid character: expected an optional prefix of `urn:uuid:` followed by [0-9a-fA-F-], found `{}` at {}", character, index)
}
ErrorKind::SimpleLength { len } => {
write!(
f, "invalid length: expected length 32 for simple format, found {}",
len
)
}
ErrorKind::ByteLength { len } => {
write!(f, "invalid length: expected 16 bytes, found {}", len)
}
ErrorKind::GroupCount { count } => {
write!(f, "invalid group count: expected 5, found {}", count)
}
ErrorKind::GroupLength { group, len, .. } => { let expected = [8, 4, 4, 4, 12][group];
write!(
f, "invalid group length in group {}: expected {}, found {}",
group, expected, len
)
}
ErrorKind::InvalidUTF8 => write!(f, "non-UTF8 input"),
ErrorKind::Other => write!(f, "failed to parse a UUID"),
}
}
}
#[cfg(feature = "std")] mod std_support { usesuper::*; usecrate::std::error;
impl error::Error for Error {}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.9 Sekunden
(vorverarbeitet am 2026-06-18)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.