pub struct OfdPageVo {
pub content_page_path: String,
pub template_page_path: Option<String>,
}👎Deprecated since 1.0.0:
使用 PageInfo 替代
Expand description
OFD 页面视图对象,包含内容页面和可选的模板页面。
对应 Java: org.ofdrw.reader.model.OfdPageVo
废弃:Java 原始类标记为 @Deprecated,建议使用 PageInfo。
Fields§
§content_page_path: String👎Deprecated since 1.0.0:
使用 PageInfo 替代
内容页面路径。
template_page_path: Option<String>👎Deprecated since 1.0.0:
使用 PageInfo 替代
模板页面路径(可选)。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OfdPageVo
impl RefUnwindSafe for OfdPageVo
impl Send for OfdPageVo
impl Sync for OfdPageVo
impl Unpin for OfdPageVo
impl UnsafeUnpin for OfdPageVo
impl UnwindSafe for OfdPageVo
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