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: i16The 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: boolWhen 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
sourceimpl Clone for FeatureUpdateKey
impl Clone for FeatureUpdateKey
sourcefn clone(&self) -> FeatureUpdateKey
fn clone(&self) -> FeatureUpdateKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for FeatureUpdateKey
impl Debug for FeatureUpdateKey
sourceimpl Default for FeatureUpdateKey
impl Default for FeatureUpdateKey
sourceimpl Message for FeatureUpdateKey
impl Message for FeatureUpdateKey
sourceconst VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
const VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
The valid versions for this message.
sourceimpl PartialEq<FeatureUpdateKey> for FeatureUpdateKey
impl PartialEq<FeatureUpdateKey> for FeatureUpdateKey
sourcefn eq(&self, other: &FeatureUpdateKey) -> bool
fn eq(&self, other: &FeatureUpdateKey) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FeatureUpdateKey) -> bool
fn ne(&self, other: &FeatureUpdateKey) -> bool
This method tests for !=.
impl StructuralPartialEq for FeatureUpdateKey
Auto Trait Implementations
impl RefUnwindSafe for FeatureUpdateKey
impl Send for FeatureUpdateKey
impl Sync for FeatureUpdateKey
impl Unpin for FeatureUpdateKey
impl UnwindSafe for FeatureUpdateKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more