pub struct CreateNegativeFeedbackRemovalResponse {
pub errors: Option<Vec<Error>>,
}
Expand description
CreateNegativeFeedbackRemovalResponse : The response schema for the createNegativeFeedbackRemoval operation.
Fields§
§errors: Option<Vec<Error>>
A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl CreateNegativeFeedbackRemovalResponse
impl CreateNegativeFeedbackRemovalResponse
Sourcepub fn new() -> CreateNegativeFeedbackRemovalResponse
pub fn new() -> CreateNegativeFeedbackRemovalResponse
The response schema for the createNegativeFeedbackRemoval operation.
Trait Implementations§
Source§impl Clone for CreateNegativeFeedbackRemovalResponse
impl Clone for CreateNegativeFeedbackRemovalResponse
Source§fn clone(&self) -> CreateNegativeFeedbackRemovalResponse
fn clone(&self) -> CreateNegativeFeedbackRemovalResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateNegativeFeedbackRemovalResponse
impl Default for CreateNegativeFeedbackRemovalResponse
Source§fn default() -> CreateNegativeFeedbackRemovalResponse
fn default() -> CreateNegativeFeedbackRemovalResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateNegativeFeedbackRemovalResponse
impl<'de> Deserialize<'de> for CreateNegativeFeedbackRemovalResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateNegativeFeedbackRemovalResponse
impl PartialEq for CreateNegativeFeedbackRemovalResponse
Source§fn eq(&self, other: &CreateNegativeFeedbackRemovalResponse) -> bool
fn eq(&self, other: &CreateNegativeFeedbackRemovalResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateNegativeFeedbackRemovalResponse
Auto Trait Implementations§
impl Freeze for CreateNegativeFeedbackRemovalResponse
impl RefUnwindSafe for CreateNegativeFeedbackRemovalResponse
impl Send for CreateNegativeFeedbackRemovalResponse
impl Sync for CreateNegativeFeedbackRemovalResponse
impl Unpin for CreateNegativeFeedbackRemovalResponse
impl UnwindSafe for CreateNegativeFeedbackRemovalResponse
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