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.
1 parent 52babfa commit d3c15bdCopy full SHA for d3c15bd
src/lib.rs
@@ -28,15 +28,3 @@ mod string;
28
pub use array::FixedArray;
29
pub use length::ValidLength;
30
pub use string::FixedString;
31
-
32
-#[cfg(test)]
33
-mod test {
34
- use std::mem::size_of;
35
36
- use crate::FixedString;
37
38
- #[test]
39
- fn niche_test() {
40
- assert_eq!(size_of::<FixedString>(), size_of::<Option<FixedString>>());
41
- }
42
-}
src/string.rs
@@ -12,9 +12,6 @@ enum FixedStringRepr<LenT: ValidLength> {
12
Inline(InlineString<LenT::InlineStrRepr>),
13
}
14
15
-#[test]
16
-fn test() {}
17
18
/// A fixed size String with length provided at creation denoted in [`ValidLength`], by default [`u32`].
19
///
20
/// See module level documentation for more information.
0 commit comments