pub fn parse_optional_uuid(opt_str: Option<String>) -> Option<Uuid>Expand description
Parse an optional UUID string with fallback
Handles Option<String> from database columns, returning None if the
input is None, otherwise using the fallback UUID parsing logic.