pub struct ListGroupItemsResponse {
pub items: Option<Vec<GroupItem>>,
pub kind: Option<String>,
pub etag: Option<String>,
pub errors: Option<Errors>,
}Expand description
Response message for GroupsService.ListGroupItems.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list group items (response)
Fields§
§items: Option<Vec<GroupItem>>A list of groups that match the API request parameters. Each item in the
list represents a groupItem resource.
kind: Option<String>Identifies the API resource’s type. The value will be
youtube#groupItemListResponse.
etag: Option<String>The Etag of this resource.
errors: Option<Errors>Apiary error details
Trait Implementations§
Source§impl Clone for ListGroupItemsResponse
impl Clone for ListGroupItemsResponse
Source§fn clone(&self) -> ListGroupItemsResponse
fn clone(&self) -> ListGroupItemsResponse
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 ListGroupItemsResponse
impl Debug for ListGroupItemsResponse
Source§impl Default for ListGroupItemsResponse
impl Default for ListGroupItemsResponse
Source§fn default() -> ListGroupItemsResponse
fn default() -> ListGroupItemsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGroupItemsResponse
impl<'de> Deserialize<'de> for ListGroupItemsResponse
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
impl ResponseResult for ListGroupItemsResponse
Auto Trait Implementations§
impl Freeze for ListGroupItemsResponse
impl RefUnwindSafe for ListGroupItemsResponse
impl Send for ListGroupItemsResponse
impl Sync for ListGroupItemsResponse
impl Unpin for ListGroupItemsResponse
impl UnsafeUnpin for ListGroupItemsResponse
impl UnwindSafe for ListGroupItemsResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more