pub struct StreamHeader {
pub offset: u32,
pub size: u32,
pub name: String,
}Expand description
旧版本的流头结构,用于向后兼容
Fields§
§offset: u32该流在元数据中的偏移量
size: u32流的大小(字节)
name: String流的名称,如 “#Strings”、“#US”、“#GUID”、“#Blob” 等
Trait Implementations§
Source§impl Clone for StreamHeader
impl Clone for StreamHeader
Source§fn clone(&self) -> StreamHeader
fn clone(&self) -> StreamHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StreamHeader
impl RefUnwindSafe for StreamHeader
impl Send for StreamHeader
impl Sync for StreamHeader
impl Unpin for StreamHeader
impl UnwindSafe for StreamHeader
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