pub struct CtAction {
pub event: Option<String>,
pub action_type: Option<String>,
pub dest: Option<CtDest>,
}Expand description
CT_Action:文档/页面/大纲等关联的动作(见第 14 章,此处为基础建模)。
Fields§
§event: Option<String>事件类型,如 DO(文档打开)、PO(页面打开),见表 52。
action_type: Option<String>动作类型。
dest: Option<CtDest>目标位置。
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CtAction
impl<'de> Deserialize<'de> for CtAction
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 CtAction
impl RefUnwindSafe for CtAction
impl Send for CtAction
impl Sync for CtAction
impl Unpin for CtAction
impl UnsafeUnpin for CtAction
impl UnwindSafe for CtAction
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