pub struct VideoTag {
pub tag_id: u64,
pub tag_name: String,
pub jump_url: String,
}Expand description
One video tag returned by the detail endpoint.
Fields§
§tag_id: u64Tag ID.
tag_name: StringTag display name.
jump_url: StringOptional tag jump URL.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VideoTag
impl<'de> Deserialize<'de> for VideoTag
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
Auto Trait Implementations§
impl Freeze for VideoTag
impl RefUnwindSafe for VideoTag
impl Send for VideoTag
impl Sync for VideoTag
impl Unpin for VideoTag
impl UnsafeUnpin for VideoTag
impl UnwindSafe for VideoTag
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