pub struct SupportedFeatureKey {
pub name: String,
pub min_version: i16,
pub max_version: i16,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§name: String§min_version: i16§max_version: i16§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for SupportedFeatureKey
impl Clone for SupportedFeatureKey
Source§fn clone(&self) -> SupportedFeatureKey
fn clone(&self) -> SupportedFeatureKey
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 SupportedFeatureKey
impl Debug for SupportedFeatureKey
Source§impl Decode<'_> for SupportedFeatureKey
impl Decode<'_> 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
Source§impl Encode for SupportedFeatureKey
impl Encode for SupportedFeatureKey
impl Eq for SupportedFeatureKey
Source§impl PartialEq for SupportedFeatureKey
impl PartialEq for SupportedFeatureKey
Source§fn eq(&self, other: &SupportedFeatureKey) -> bool
fn eq(&self, other: &SupportedFeatureKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SupportedFeatureKey
Auto Trait Implementations§
impl Freeze for SupportedFeatureKey
impl RefUnwindSafe for SupportedFeatureKey
impl Send for SupportedFeatureKey
impl Sync for SupportedFeatureKey
impl Unpin for SupportedFeatureKey
impl UnsafeUnpin 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