pub struct CollectionEpisodesUpdate {
pub episode_id: Vec<u32>,
pub type: CollectionEpisodeType,
}Expand description
批量更新单集收藏状态的请求参数
用于一次性更新多个剧集的收藏状态
Fields§
§episode_id: Vec<u32>剧集ID列表(需更新状态的剧集)
type: CollectionEpisodeType目标收藏状态(更新后的状态)
Trait Implementations§
Source§impl Clone for CollectionEpisodesUpdate
impl Clone for CollectionEpisodesUpdate
Source§fn clone(&self) -> CollectionEpisodesUpdate
fn clone(&self) -> CollectionEpisodesUpdate
Returns a duplicate 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 CollectionEpisodesUpdate
impl Debug for CollectionEpisodesUpdate
Source§impl<'de> Deserialize<'de> for CollectionEpisodesUpdate
impl<'de> Deserialize<'de> for CollectionEpisodesUpdate
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 CollectionEpisodesUpdate
impl RefUnwindSafe for CollectionEpisodesUpdate
impl Send for CollectionEpisodesUpdate
impl Sync for CollectionEpisodesUpdate
impl Unpin for CollectionEpisodesUpdate
impl UnwindSafe for CollectionEpisodesUpdate
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