use ;
/// Representation of a value _SNMPv1_ Community string.
///
/// Allowed characters are:
/// - English uppercase characters (A - Z)
/// - English lowercase characters (a - z)
/// - Base 10 digits (0 - 9)
/// - Special characters: `- . # % ^ * ( ) - _ + = { } [ ] | : ; , !`
///
/// The maximum length is 31 characters.
;
// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :