Returns the semantic version information.
()
| 751 | |
| 752 | /// Returns the semantic version information. |
| 753 | pub fn version() -> SemVer { |
| 754 | SemVer { |
| 755 | major: unsafe { sz_version_major() }, |
| 756 | minor: unsafe { sz_version_minor() }, |
| 757 | patch: unsafe { sz_version_patch() }, |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | /// A fixed-size, compile-time known C-string buffer type. |
| 762 | /// It keeps track of the number of written bytes (excluding the null terminator). |
nothing calls this directly
no test coverage detected
searching dependent graphs…