pub fn validate_session_name(name: &str) -> Result<()>Expand description
Validate a session name.
Valid names contain only alphanumeric characters, dashes, and underscores. No spaces or special characters allowed (filesystem-safe).
ยงErrors
Returns RecError::InvalidSessionName if the name is empty or contains
characters other than alphanumeric, dash, or underscore.