pub struct StreamHeader {
pub offset: u32,
pub size: u32,
pub name: String,
}Expand description
Legacy stream header structure for backward compatibility.
Fields§
§offset: u32The offset of this stream in the metadata.
size: u32The size of the stream in bytes.
name: StringThe name of the stream, such as “#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 UnsafeUnpin 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