pub struct CreateFeedResponse {
pub payload: Option<Box<CreateFeedResult>>,
pub errors: Option<Vec<Error>>,
}Expand description
CreateFeedResponse : Response schema.
Fields
payload: Option<Box<CreateFeedResult>>errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations
sourceimpl CreateFeedResponse
impl CreateFeedResponse
sourcepub fn new() -> CreateFeedResponse
pub fn new() -> CreateFeedResponse
Response schema.
Trait Implementations
sourceimpl Clone for CreateFeedResponse
impl Clone for CreateFeedResponse
sourcefn clone(&self) -> CreateFeedResponse
fn clone(&self) -> CreateFeedResponse
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 moresourceimpl Debug for CreateFeedResponse
impl Debug for CreateFeedResponse
sourceimpl Default for CreateFeedResponse
impl Default for CreateFeedResponse
sourcefn default() -> CreateFeedResponse
fn default() -> CreateFeedResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateFeedResponse
impl<'de> Deserialize<'de> for CreateFeedResponse
sourcefn 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
sourceimpl PartialEq<CreateFeedResponse> for CreateFeedResponse
impl PartialEq<CreateFeedResponse> for CreateFeedResponse
sourcefn eq(&self, other: &CreateFeedResponse) -> bool
fn eq(&self, other: &CreateFeedResponse) -> bool
sourceimpl Serialize for CreateFeedResponse
impl Serialize for CreateFeedResponse
impl StructuralPartialEq for CreateFeedResponse
Auto Trait Implementations
impl RefUnwindSafe for CreateFeedResponse
impl Send for CreateFeedResponse
impl Sync for CreateFeedResponse
impl Unpin for CreateFeedResponse
impl UnwindSafe for CreateFeedResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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