Skip to main content

llama_cpp_bindings/model/
llama_split_mode_parse_error.rs

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.
5    pub value: i32,
6    /// Additional context about why the parse failed.
7    pub context: String,
8}