ParseMode docs

This commit is contained in:
AF 2023-07-30 15:04:27 +00:00
parent c368a51fe1
commit 72369c306e

View File

@ -107,7 +107,9 @@ pub trait Mode {
) -> Self::ExtensionResult<AB, E>; ) -> Self::ExtensionResult<AB, E>;
} }
/// Type that a [`Mode`] associated with it.
pub trait ParseMode { pub trait ParseMode {
/// Associated [`Mode`].
type Mode: ?Sized + Mode; type Mode: ?Sized + Mode;
} }