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 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