pub struct CtDest {
pub dest_type: Option<String>,
pub page_id: Option<StRefId>,
pub left: Option<f64>,
pub top: Option<f64>,
pub right: Option<f64>,
pub bottom: Option<f64>,
pub zoom: Option<f64>,
}Expand description
CT_Dest:文档内的目标位置(见表 54,此处为基础建模)。
Fields§
§dest_type: Option<String>目标类型,如 XYZ、Fit、FitH、FitV、FitR 等。
page_id: Option<StRefId>引用的页面标识。
left: Option<f64>左边界坐标。
top: Option<f64>上边界坐标。
right: Option<f64>右边界坐标。
bottom: Option<f64>下边界坐标。
zoom: Option<f64>缩放比例。
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CtDest
impl<'de> Deserialize<'de> for CtDest
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 CtDest
impl RefUnwindSafe for CtDest
impl Send for CtDest
impl Sync for CtDest
impl Unpin for CtDest
impl UnsafeUnpin for CtDest
impl UnwindSafe for CtDest
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