1/// An error that occurs when unknown split mode is encountered.
2#[derive(Debug, Clone, PartialEq, Eq)]
3pub struct LlamaSplitModeParseError {
4/// The value that could not be parsed as a split mode.
5pub value: i32,
6/// Additional context about why the parse failed.
7pub context: String,
8}