remove obsolete comment
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-08-28 17:22:36 +02:00
parent d98d4b55c8
commit 925b2aa8d8
Signed by: muellerr
GPG Key ID: FCE0B2BD2195142F

View File

@ -80,8 +80,7 @@ pub trait UnsignedEnumExt: UnsignedEnum + Debug + Copy + Clone + PartialEq + Eq
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum UnsignedByteFieldError {
/// Value is too large for specified width of byte field. The first value contains the width,
/// the second value contains the detected value.
/// Value is too large for specified width of byte field.
ValueTooLargeForWidth {
width: usize,
value: u64,