pub type ArgumentResult<'f> = Result<ArgumentSpec<'f>, Error<'f>>;
Expand description
The result returned for each element of Format::iter_args
.
Aliased Type§
enum ArgumentResult<'f> {
Ok(ArgumentSpec<'f>),
Err(Error<'f>),
}
pub type ArgumentResult<'f> = Result<ArgumentSpec<'f>, Error<'f>>;
The result returned for each element of Format::iter_args
.
enum ArgumentResult<'f> {
Ok(ArgumentSpec<'f>),
Err(Error<'f>),
}