pub struct ActivityTypeInfos {
pub next_page_token: Option<String>,
pub type_infos: Vec<ActivityTypeInfo>,
}
Expand description
Contains a paginated list of activity type information structures.
Fields§
§next_page_token: Option<String>
If a NextPageToken
was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken
. Keep all other arguments unchanged.
The configured maximumPageSize
determines how many results can be returned in a single call.
type_infos: Vec<ActivityTypeInfo>
List of activity type information.
Trait Implementations§
Source§impl Clone for ActivityTypeInfos
impl Clone for ActivityTypeInfos
Source§fn clone(&self) -> ActivityTypeInfos
fn clone(&self) -> ActivityTypeInfos
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 Debug for ActivityTypeInfos
impl Debug for ActivityTypeInfos
Source§impl Default for ActivityTypeInfos
impl Default for ActivityTypeInfos
Source§fn default() -> ActivityTypeInfos
fn default() -> ActivityTypeInfos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityTypeInfos
impl<'de> Deserialize<'de> for ActivityTypeInfos
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 ActivityTypeInfos
impl PartialEq for ActivityTypeInfos
impl StructuralPartialEq for ActivityTypeInfos
Auto Trait Implementations§
impl Freeze for ActivityTypeInfos
impl RefUnwindSafe for ActivityTypeInfos
impl Send for ActivityTypeInfos
impl Sync for ActivityTypeInfos
impl Unpin for ActivityTypeInfos
impl UnwindSafe for ActivityTypeInfos
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