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