pub struct ChannelData {
pub id: String,
pub title: String,
pub url: String,
pub snippet: String,
pub thumbnail_src: String,
pub video_count: String,
pub subscriber_count: String,
pub verified: bool,
}
Expand description
Data related to youtube channel
Fields§
§id: String
§title: String
§url: String
§snippet: String
§thumbnail_src: String
§video_count: String
§subscriber_count: String
§verified: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChannelData
impl RefUnwindSafe for ChannelData
impl Send for ChannelData
impl Sync for ChannelData
impl Unpin for ChannelData
impl UnwindSafe for ChannelData
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