pub struct SearchBangumiDetails {
pub search_anime_details: SearchAnimeDetails,
pub rank: Option<i32>,
pub search_keyword: Option<String>,
pub is_on_air: Option<bool>,
pub is_restricted: Option<bool>,
pub intro: Option<String>,
}Fields§
§search_anime_details: SearchAnimeDetails§rank: Option<i32>搜索结果中的排名,用于界面中排序展示,从1开始递增
search_keyword: Option<String>搜索关键词
is_on_air: Option<bool>是否正在连载中
is_restricted: Option<bool>是否为限制级别的内容(例如属于R18分级)
intro: Option<String>短简介(剧情简介或Staff简介)
Trait Implementations§
Source§impl Clone for SearchBangumiDetails
impl Clone for SearchBangumiDetails
Source§fn clone(&self) -> SearchBangumiDetails
fn clone(&self) -> SearchBangumiDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SearchBangumiDetails
impl Debug for SearchBangumiDetails
Source§impl<'de> Deserialize<'de> for SearchBangumiDetails
impl<'de> Deserialize<'de> for SearchBangumiDetails
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 SearchBangumiDetails
impl RefUnwindSafe for SearchBangumiDetails
impl Send for SearchBangumiDetails
impl Sync for SearchBangumiDetails
impl Unpin for SearchBangumiDetails
impl UnsafeUnpin for SearchBangumiDetails
impl UnwindSafe for SearchBangumiDetails
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