pub struct SupportedFeatureKey {
pub name: String,
pub min_version: i16,
pub max_version: i16,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§name: String
The name of the feature.
min_version: i16
The minimum supported version for the feature.
max_version: i16
The maximum supported version for the feature.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for SupportedFeatureKey
impl Clone for SupportedFeatureKey
Source§fn clone(&self) -> SupportedFeatureKey
fn clone(&self) -> SupportedFeatureKey
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 SupportedFeatureKey
impl Debug for SupportedFeatureKey
Source§impl Default for SupportedFeatureKey
impl Default for SupportedFeatureKey
Source§fn default() -> SupportedFeatureKey
fn default() -> SupportedFeatureKey
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SupportedFeatureKey
impl RefUnwindSafe for SupportedFeatureKey
impl Send for SupportedFeatureKey
impl Sync for SupportedFeatureKey
impl Unpin for SupportedFeatureKey
impl UnwindSafe for SupportedFeatureKey
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