pub struct FeatureUpdateKey {
pub feature: String,
pub max_version_level: i16,
pub allow_downgrade: bool,
pub upgrade_type: i8,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§feature: String§max_version_level: i16§allow_downgrade: bool§upgrade_type: i8§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for FeatureUpdateKey
impl Clone for FeatureUpdateKey
Source§fn clone(&self) -> FeatureUpdateKey
fn clone(&self) -> FeatureUpdateKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Decode<'_> for FeatureUpdateKey
impl Decode<'_> for FeatureUpdateKey
Source§impl Default for FeatureUpdateKey
impl Default for FeatureUpdateKey
Source§impl Encode for FeatureUpdateKey
impl Encode for FeatureUpdateKey
impl Eq for FeatureUpdateKey
Source§impl PartialEq for FeatureUpdateKey
impl PartialEq for FeatureUpdateKey
Source§fn eq(&self, other: &FeatureUpdateKey) -> bool
fn eq(&self, other: &FeatureUpdateKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FeatureUpdateKey
Auto Trait Implementations§
impl Freeze for FeatureUpdateKey
impl RefUnwindSafe for FeatureUpdateKey
impl Send for FeatureUpdateKey
impl Sync for FeatureUpdateKey
impl Unpin for FeatureUpdateKey
impl UnsafeUnpin for FeatureUpdateKey
impl UnwindSafe for FeatureUpdateKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more