pub struct UpdatableFeatureResult<'a> {
pub feature: &'a str,
pub error_code: i16,
pub error_message: Option<&'a str>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§feature: &'a str§error_code: i16§error_message: Option<&'a str>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl UpdatableFeatureResult<'_>
impl UpdatableFeatureResult<'_>
pub fn to_owned(&self) -> UpdatableFeatureResult
Trait Implementations§
Source§impl<'a> Clone for UpdatableFeatureResult<'a>
impl<'a> Clone for UpdatableFeatureResult<'a>
Source§fn clone(&self) -> UpdatableFeatureResult<'a>
fn clone(&self) -> UpdatableFeatureResult<'a>
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<'a> Debug for UpdatableFeatureResult<'a>
impl<'a> Debug for UpdatableFeatureResult<'a>
Source§impl<'de> DecodeBorrow<'de> for UpdatableFeatureResult<'de>
impl<'de> DecodeBorrow<'de> for UpdatableFeatureResult<'de>
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
Source§impl<'a> Default for UpdatableFeatureResult<'a>
impl<'a> Default for UpdatableFeatureResult<'a>
Source§fn default() -> UpdatableFeatureResult<'a>
fn default() -> UpdatableFeatureResult<'a>
Returns the “default value” for a type. Read more
Source§impl Encode for UpdatableFeatureResult<'_>
impl Encode for UpdatableFeatureResult<'_>
impl<'a> Eq for UpdatableFeatureResult<'a>
Source§impl<'a> PartialEq for UpdatableFeatureResult<'a>
impl<'a> PartialEq for UpdatableFeatureResult<'a>
Source§fn eq(&self, other: &UpdatableFeatureResult<'a>) -> bool
fn eq(&self, other: &UpdatableFeatureResult<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for UpdatableFeatureResult<'a>
Auto Trait Implementations§
impl<'a> Freeze for UpdatableFeatureResult<'a>
impl<'a> RefUnwindSafe for UpdatableFeatureResult<'a>
impl<'a> Send for UpdatableFeatureResult<'a>
impl<'a> Sync for UpdatableFeatureResult<'a>
impl<'a> Unpin for UpdatableFeatureResult<'a>
impl<'a> UnsafeUnpin for UpdatableFeatureResult<'a>
impl<'a> UnwindSafe for UpdatableFeatureResult<'a>
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