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