Struct palmrs_database::info::NullExtraInfo
source · pub struct NullExtraInfo;
Expand description
Null implementation of ExtraInfoRecord
Trait Implementations§
source§impl Clone for NullExtraInfo
impl Clone for NullExtraInfo
source§fn clone(&self) -> NullExtraInfo
fn clone(&self) -> NullExtraInfo
Returns a copy 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 moresource§impl Debug for NullExtraInfo
impl Debug for NullExtraInfo
source§impl ExtraInfoRecord for NullExtraInfo
impl ExtraInfoRecord for NullExtraInfo
source§const SIZE: usize = 0usize
const SIZE: usize = 0usize
Size in bytes (packed) which the ExtraInfoRecord occupies in the pdb/prc
source§fn from_bytes(
_hdr: &DatabaseHeader,
_data: &mut Cursor<&[u8]>
) -> Result<Self, Error>
fn from_bytes( _hdr: &DatabaseHeader, _data: &mut Cursor<&[u8]> ) -> Result<Self, Error>
Read the record header from the given byte array
source§fn data_empty(&self) -> bool
fn data_empty(&self) -> bool
Whether this ExtraInfoRecord contains no data
source§fn data_item_categories(&self) -> Option<Vec<ExtraInfoCategory>>
fn data_item_categories(&self) -> Option<Vec<ExtraInfoCategory>>
If the record contains a list of item categories, return those categories
source§impl PartialEq<NullExtraInfo> for NullExtraInfo
impl PartialEq<NullExtraInfo> for NullExtraInfo
source§fn eq(&self, other: &NullExtraInfo) -> bool
fn eq(&self, other: &NullExtraInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for NullExtraInfo
impl StructuralPartialEq for NullExtraInfo
Auto Trait Implementations§
impl RefUnwindSafe for NullExtraInfo
impl Send for NullExtraInfo
impl Sync for NullExtraInfo
impl Unpin for NullExtraInfo
impl UnwindSafe for NullExtraInfo
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