pub struct InteractiveVideoHiddenVar {
pub value: i64,
pub id: String,
pub id_v2: String,
pub var_type: u8,
pub is_show: u8,
pub name: String,
}Expand description
变量信息
Fields§
§value: i64变量值
id: String变量编号
id_v2: String变量编号,语句中一般使用此项
var_type: u8变量类型, 1: 普通变量, 2: 随机值
is_show: u8是否展示变量, 0: 否, 1: 是
name: String变量名
Trait Implementations§
Source§impl Clone for InteractiveVideoHiddenVar
impl Clone for InteractiveVideoHiddenVar
Source§fn clone(&self) -> InteractiveVideoHiddenVar
fn clone(&self) -> InteractiveVideoHiddenVar
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 InteractiveVideoHiddenVar
impl Debug for InteractiveVideoHiddenVar
Source§impl<'de> Deserialize<'de> for InteractiveVideoHiddenVar
impl<'de> Deserialize<'de> for InteractiveVideoHiddenVar
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 InteractiveVideoHiddenVar
impl RefUnwindSafe for InteractiveVideoHiddenVar
impl Send for InteractiveVideoHiddenVar
impl Sync for InteractiveVideoHiddenVar
impl Unpin for InteractiveVideoHiddenVar
impl UnsafeUnpin for InteractiveVideoHiddenVar
impl UnwindSafe for InteractiveVideoHiddenVar
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