pub struct FeatureUpdateKey {
pub max_version_level: i16,
pub allow_downgrade: bool,
pub unknown_tagged_fields: BTreeMap<i32, Vec<u8>>,
}
Expand description
Valid versions: 0
Fields§
§max_version_level: i16
The new maximum version level for the finalized feature. A value >= 1 is valid. A value < 1, is special, and can be used to request the deletion of the finalized feature.
Supported API versions: 0
allow_downgrade: bool
When set to true, the finalized feature version level is allowed to be downgraded/deleted. The downgrade request will fail if the new maximum version level is a value that’s not lower than the existing maximum finalized version level.
Supported API versions: 0
unknown_tagged_fields: BTreeMap<i32, Vec<u8>>
Other tagged fields
Trait Implementations§
source§impl Clone for FeatureUpdateKey
impl Clone for FeatureUpdateKey
source§fn clone(&self) -> FeatureUpdateKey
fn clone(&self) -> FeatureUpdateKey
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FeatureUpdateKey
impl Debug for FeatureUpdateKey
source§impl Default for FeatureUpdateKey
impl Default for FeatureUpdateKey
source§impl Message for FeatureUpdateKey
impl Message for FeatureUpdateKey
source§const VERSIONS: VersionRange = _
const VERSIONS: VersionRange = _
The valid versions for this message.