pub fn parse_library_ref(s: &str) -> Result<LibraryRef, XmlError>Expand description
Splits a reference string into (library, name).
Accepted forms:
"library::name"โ qualified."name"โ unqualified (libraryempty).
ยงErrors
XmlError::UnresolvedReferenceโ empty string, or"::name", or"library::", or more than two::segments.