Struct google_youtube3::api::LiveChatMessageListResponse
source · pub struct LiveChatMessageListResponse {
pub etag: Option<String>,
pub event_id: Option<String>,
pub items: Option<Vec<LiveChatMessage>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub offline_at: Option<DateTime<Utc>>,
pub page_info: Option<PageInfo>,
pub polling_interval_millis: Option<u32>,
pub token_pagination: Option<TokenPagination>,
pub visitor_id: Option<String>,
}
Expand description
There is no detailed description.
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 live chat messages (response)
Fields§
§etag: Option<String>
Etag of this resource.
event_id: Option<String>
Serialized EventId of the request which produced this response.
items: Option<Vec<LiveChatMessage>>
no description provided
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#liveChatMessageListResponse”.
next_page_token: Option<String>
no description provided
offline_at: Option<DateTime<Utc>>
The date and time when the underlying stream went offline.
page_info: Option<PageInfo>
General pagination information.
polling_interval_millis: Option<u32>
The amount of time the client should wait before polling again.
token_pagination: Option<TokenPagination>
no description provided
visitor_id: Option<String>
The visitorId identifies the visitor.
Trait Implementations§
source§impl Clone for LiveChatMessageListResponse
impl Clone for LiveChatMessageListResponse
source§fn clone(&self) -> LiveChatMessageListResponse
fn clone(&self) -> LiveChatMessageListResponse
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 LiveChatMessageListResponse
impl Debug for LiveChatMessageListResponse
source§impl Default for LiveChatMessageListResponse
impl Default for LiveChatMessageListResponse
source§fn default() -> LiveChatMessageListResponse
fn default() -> LiveChatMessageListResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveChatMessageListResponse
impl<'de> Deserialize<'de> for LiveChatMessageListResponse
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 LiveChatMessageListResponse
Auto Trait Implementations§
impl RefUnwindSafe for LiveChatMessageListResponse
impl Send for LiveChatMessageListResponse
impl Sync for LiveChatMessageListResponse
impl Unpin for LiveChatMessageListResponse
impl UnwindSafe for LiveChatMessageListResponse
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