Struct google_youtube3::api::Member
source · pub struct Member {
pub etag: Option<String>,
pub kind: Option<String>,
pub snippet: Option<MemberSnippet>,
}
Expand description
A member resource represents a member for a YouTube channel. A member provides recurring monetary support to a creator and receives special benefits.
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 members (none)
Fields§
§etag: Option<String>
Etag of this resource.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#member”.
snippet: Option<MemberSnippet>
The snippet object contains basic details about the member.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Member
impl<'de> Deserialize<'de> for Member
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 Resource for Member
Auto Trait Implementations§
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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