pub struct UserUploadedVideos {
pub list: UserUploadedVideoList,
pub page: UserUploadedVideosPage,
pub episodic_button: Option<UserUploadedVideosButton>,
pub is_risk: bool,
}Expand description
Uploaded videos returned by /x/space/wbi/arc/search.
Fields§
§list: UserUploadedVideoListUploaded video list and partition summary.
page: UserUploadedVideosPagePagination summary.
Optional play-all button returned by Bilibili.
is_risk: boolWhether the response was risk-controlled by Bilibili.
Trait Implementations§
Source§impl Clone for UserUploadedVideos
impl Clone for UserUploadedVideos
Source§fn clone(&self) -> UserUploadedVideos
fn clone(&self) -> UserUploadedVideos
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 UserUploadedVideos
impl Debug for UserUploadedVideos
Source§impl<'de> Deserialize<'de> for UserUploadedVideos
impl<'de> Deserialize<'de> for UserUploadedVideos
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 UserUploadedVideos
impl RefUnwindSafe for UserUploadedVideos
impl Send for UserUploadedVideos
impl Sync for UserUploadedVideos
impl Unpin for UserUploadedVideos
impl UnsafeUnpin for UserUploadedVideos
impl UnwindSafe for UserUploadedVideos
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