pub struct VideoTag {
pub tag_id: u64,
pub tag_name: String,
pub jump_url: String,
}Expand description
detail endpoint 返回的一个视频标签。
Fields§
§tag_id: u64标签 ID。
tag_name: String标签显示名称。
jump_url: String可选标签跳转 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