pub struct File {
pub name: String,
pub size: u64,
}Expand description
对应 Java: org.ofdrw.core.basicStructure.File
描述 OFD 包中的一个文件,包含文件名和大小。
Fields§
§name: String文件名(如 “OFD.xml”、“Doc_0/Content.xml”)。
size: u64文件大小(字节)。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnsafeUnpin for File
impl UnwindSafe for File
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