pub struct UpdatableFeatureResult {
pub error_code: i16,
pub error_message: Option<StrBytes>,
pub unknown_tagged_fields: BTreeMap<i32, Vec<u8>>,
}Expand description
Valid versions: 0
Fields
error_code: i16The feature update error code or 0 if the feature update succeeded.
Supported API versions: 0
error_message: Option<StrBytes>The feature update error, or null if the feature update succeeded.
Supported API versions: 0
unknown_tagged_fields: BTreeMap<i32, Vec<u8>>Other tagged fields
Trait Implementations
sourceimpl Clone for UpdatableFeatureResult
impl Clone for UpdatableFeatureResult
sourcefn clone(&self) -> UpdatableFeatureResult
fn clone(&self) -> UpdatableFeatureResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UpdatableFeatureResult
impl Debug for UpdatableFeatureResult
sourceimpl Default for UpdatableFeatureResult
impl Default for UpdatableFeatureResult
sourceimpl Message for UpdatableFeatureResult
impl Message for UpdatableFeatureResult
sourceconst VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
const VERSIONS: VersionRange = VersionRange { min: 0, max: 0 }
The valid versions for this message.
sourceimpl PartialEq<UpdatableFeatureResult> for UpdatableFeatureResult
impl PartialEq<UpdatableFeatureResult> for UpdatableFeatureResult
sourcefn eq(&self, other: &UpdatableFeatureResult) -> bool
fn eq(&self, other: &UpdatableFeatureResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdatableFeatureResult) -> bool
fn ne(&self, other: &UpdatableFeatureResult) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdatableFeatureResult
Auto Trait Implementations
impl RefUnwindSafe for UpdatableFeatureResult
impl Send for UpdatableFeatureResult
impl Sync for UpdatableFeatureResult
impl Unpin for UpdatableFeatureResult
impl UnwindSafe for UpdatableFeatureResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more