File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,14 @@ use core::marker::PhantomData;
7
7
use core:: mem;
8
8
9
9
/// Iterates over the tags (modelled by [`DynSizedStructure`]) of the underlying
10
- /// byte slice. Each tag is expected to have the same common [`Header`].
10
+ /// byte slice. Each tag is expected to have the same common [`Header`] with
11
+ /// the corresponding ABI guarantees.
11
12
///
12
13
/// As the iterator emits elements of type [`DynSizedStructure`], users should
13
- /// casted them to specific [`Tag`]s using [`DynSizedStructure::cast`] following
14
- /// a user policy. This can for example happen on the basis of some ID.
14
+ /// cast them to specific [`Tag`]s using [`DynSizedStructure::cast`] following
15
+ /// a user-specific policy. This can for example happen on the basis of some ID.
16
+ ///
17
+ /// This iterator also emits end tags and doesn't treat them separately.
15
18
///
16
19
/// This type ensures the memory safety guarantees promised by this crates
17
20
/// documentation.
You can’t perform that action at this time.
0 commit comments