pub struct InteractiveVideoInfoResponseData {
pub title: String,
pub edge_id: u64,
pub story_list: Vec<InteractiveVideoStory>,
pub edges: Option<InteractiveVideoEdges>,
pub preload: Option<InteractiveVideoPreload>,
pub hidden_vars: Vec<InteractiveVideoHiddenVar>,
pub is_leaf: u8,
pub no_tutorial: u8,
pub no_backtracking: u8,
pub no_evaluation: u8,
}Expand description
互动视频模块详细信息响应数据
Fields§
§title: String视频模块(分P)标题
edge_id: u64当前模块 ID
story_list: Vec<InteractiveVideoStory>进度回溯信息
edges: Option<InteractiveVideoEdges>当前模块信息
preload: Option<InteractiveVideoPreload>预加载的分P
变量列表
is_leaf: u8是否为结束模块, 0: 普通模块, 1: 结束模块
no_tutorial: u8禁止记录选择, 1: 禁止
no_backtracking: u8禁止进度回溯, 1: 禁止
no_evaluation: u8禁止结尾评分, 1: 禁止
Trait Implementations§
Source§impl Clone for InteractiveVideoInfoResponseData
impl Clone for InteractiveVideoInfoResponseData
Source§fn clone(&self) -> InteractiveVideoInfoResponseData
fn clone(&self) -> InteractiveVideoInfoResponseData
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<'de> Deserialize<'de> for InteractiveVideoInfoResponseData
impl<'de> Deserialize<'de> for InteractiveVideoInfoResponseData
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 InteractiveVideoInfoResponseData
impl RefUnwindSafe for InteractiveVideoInfoResponseData
impl Send for InteractiveVideoInfoResponseData
impl Sync for InteractiveVideoInfoResponseData
impl Unpin for InteractiveVideoInfoResponseData
impl UnwindSafe for InteractiveVideoInfoResponseData
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