#[non_exhaustive]pub struct Feature {
pub min_supported_version: i16,
pub max_supported_version: i16,
pub unknown_tagged_fields: BTreeMap<i32, Vec<u8>>,
}
Expand description
Valid versions: 0
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.min_supported_version: i16
The minimum supported feature level.
Supported API versions: 0
max_supported_version: i16
The maximum supported feature level.
Supported API versions: 0
unknown_tagged_fields: BTreeMap<i32, Vec<u8>>
Other tagged fields
Trait Implementations§
source§impl Message for Feature
impl Message for Feature
source§const VERSIONS: VersionRange = _
const VERSIONS: VersionRange = _
The valid versions for this message.