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