Struct google_youtube3::api::LiveChatMessage
source · pub struct LiveChatMessage {
pub author_details: Option<LiveChatMessageAuthorDetails>,
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub snippet: Option<LiveChatMessageSnippet>,
}
Expand description
A liveChatMessage resource represents a chat message in a YouTube Live Chat.
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).
- delete live chat messages (none)
- insert live chat messages (request|response)
- list live chat messages (none)
Fields§
The authorDetails object contains basic details about the user that posted this message.
etag: Option<String>
Etag of this resource.
id: Option<String>
The ID that YouTube assigns to uniquely identify the message.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#liveChatMessage”.
snippet: Option<LiveChatMessageSnippet>
The snippet object contains basic details about the message.
Trait Implementations§
source§impl Clone for LiveChatMessage
impl Clone for LiveChatMessage
source§fn clone(&self) -> LiveChatMessage
fn clone(&self) -> LiveChatMessage
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 LiveChatMessage
impl Debug for LiveChatMessage
source§impl Default for LiveChatMessage
impl Default for LiveChatMessage
source§fn default() -> LiveChatMessage
fn default() -> LiveChatMessage
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveChatMessage
impl<'de> Deserialize<'de> for LiveChatMessage
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 Serialize for LiveChatMessage
impl Serialize for LiveChatMessage
source§impl ToParts for LiveChatMessage
impl ToParts for LiveChatMessage
impl RequestValue for LiveChatMessage
impl Resource for LiveChatMessage
impl ResponseResult for LiveChatMessage
Auto Trait Implementations§
impl RefUnwindSafe for LiveChatMessage
impl Send for LiveChatMessage
impl Sync for LiveChatMessage
impl Unpin for LiveChatMessage
impl UnwindSafe for LiveChatMessage
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