pub struct FeedChangesResponse {
pub links: Option<ReferenceLinks>,
pub count: Option<i32>,
pub feed_changes: Vec<FeedChange>,
pub next_feed_continuation_token: Option<i64>,
}Expand description
A result set containing the feed changes for the range that was requested.
Fields§
§links: Option<ReferenceLinks>The class to represent a collection of REST reference links.
count: Option<i32>The number of changes in this set.
feed_changes: Vec<FeedChange>A container that encapsulates the state of the feed after a create, update, or delete.
next_feed_continuation_token: Option<i64>When iterating through the log of changes this value indicates the value that should be used for the next continuation token.
Implementations§
Trait Implementations§
source§impl Clone for FeedChangesResponse
impl Clone for FeedChangesResponse
source§fn clone(&self) -> FeedChangesResponse
fn clone(&self) -> FeedChangesResponse
Returns a copy 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 Debug for FeedChangesResponse
impl Debug for FeedChangesResponse
source§impl Default for FeedChangesResponse
impl Default for FeedChangesResponse
source§fn default() -> FeedChangesResponse
fn default() -> FeedChangesResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FeedChangesResponse
impl<'de> Deserialize<'de> for FeedChangesResponse
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 FeedChangesResponse
impl PartialEq for FeedChangesResponse
source§fn eq(&self, other: &FeedChangesResponse) -> bool
fn eq(&self, other: &FeedChangesResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for FeedChangesResponse
impl Serialize for FeedChangesResponse
impl StructuralPartialEq for FeedChangesResponse
Auto Trait Implementations§
impl Freeze for FeedChangesResponse
impl RefUnwindSafe for FeedChangesResponse
impl Send for FeedChangesResponse
impl Sync for FeedChangesResponse
impl Unpin for FeedChangesResponse
impl UnwindSafe for FeedChangesResponse
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