pub fn check_ssh_version_minimum(version: (u32, u32, u32)) -> boolExpand description
Check whether the given SSH version meets the minimum requirement.
Args:
version: Parsed(major, minor, patch)tuple.
Usage:
ⓘ
assert!(check_ssh_version_minimum((9, 6, 1)));
assert!(!check_ssh_version_minimum((7, 9, 0)));