pub struct ControllerFeature {
pub name: String,
pub min_supported_version: i16,
pub max_supported_version: i16,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§name: String§min_supported_version: i16§max_supported_version: i16§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for ControllerFeature
impl Clone for ControllerFeature
Source§fn clone(&self) -> ControllerFeature
fn clone(&self) -> ControllerFeature
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 ControllerFeature
impl Debug for ControllerFeature
Source§impl Decode<'_> for ControllerFeature
impl Decode<'_> for ControllerFeature
Source§impl Default for ControllerFeature
impl Default for ControllerFeature
Source§fn default() -> ControllerFeature
fn default() -> ControllerFeature
Returns the “default value” for a type. Read more
Source§impl Encode for ControllerFeature
impl Encode for ControllerFeature
impl Eq for ControllerFeature
Source§impl PartialEq for ControllerFeature
impl PartialEq for ControllerFeature
Source§fn eq(&self, other: &ControllerFeature) -> bool
fn eq(&self, other: &ControllerFeature) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControllerFeature
Auto Trait Implementations§
impl Freeze for ControllerFeature
impl RefUnwindSafe for ControllerFeature
impl Send for ControllerFeature
impl Sync for ControllerFeature
impl Unpin for ControllerFeature
impl UnsafeUnpin for ControllerFeature
impl UnwindSafe for ControllerFeature
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