/// An enum representing different `croc` code generation strategies.
#[derive(Debug, Default)]pubenumCode{/// The code will be generated automatically by `croc`.
#[default]
Generated,/// Custom code that `croc` will use.
Custom(String),}impl<S:ToString>From<S>forCode{fnfrom(value: S)->Self{Self::Custom(value.to_string())}}