pub fn parse_serendb_url_for_ids(url: &str) -> Option<(String, String, String)>Expand description
Parse a SerenDB URL to extract project, branch, and database IDs
SerenDB URLs have the format: postgresql://user:pass@
§Arguments
url- The SerenDB PostgreSQL connection string
§Returns
An Option containing a tuple of (project_id, branch_id, database_id) if the
URL is a valid SerenDB target and contains the expected ID format, otherwise None.