pub struct GetActivityFeedResponse {
pub entries: Option<Vec<FeedEntry>>,
pub cursor: Option<String>,
pub total: Option<i64>,
}Expand description
GetActivityFeedResponse model.
Fields§
§entries: Option<Vec<FeedEntry>>§cursor: Option<String>§total: Option<i64>Trait Implementations§
Source§impl Clone for GetActivityFeedResponse
impl Clone for GetActivityFeedResponse
Source§fn clone(&self) -> GetActivityFeedResponse
fn clone(&self) -> GetActivityFeedResponse
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 GetActivityFeedResponse
impl Debug for GetActivityFeedResponse
Source§impl Default for GetActivityFeedResponse
impl Default for GetActivityFeedResponse
Source§fn default() -> GetActivityFeedResponse
fn default() -> GetActivityFeedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetActivityFeedResponse
impl<'de> Deserialize<'de> for GetActivityFeedResponse
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 GetActivityFeedResponse
impl PartialEq for GetActivityFeedResponse
Source§impl Serialize for GetActivityFeedResponse
impl Serialize for GetActivityFeedResponse
impl StructuralPartialEq for GetActivityFeedResponse
Auto Trait Implementations§
impl Freeze for GetActivityFeedResponse
impl RefUnwindSafe for GetActivityFeedResponse
impl Send for GetActivityFeedResponse
impl Sync for GetActivityFeedResponse
impl Unpin for GetActivityFeedResponse
impl UnsafeUnpin for GetActivityFeedResponse
impl UnwindSafe for GetActivityFeedResponse
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