pub struct TableRecord(/* private fields */);Implementations§
Trait Implementations§
Source§impl Clone for TableRecord
impl Clone for TableRecord
Source§fn clone(&self) -> TableRecord
fn clone(&self) -> TableRecord
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 moreSource§impl Debug for TableRecord
impl Debug for TableRecord
Source§impl<'a> RandomAccess<'a> for &'a TableRecord
impl<'a> RandomAccess<'a> for &'a TableRecord
fn bytes(&self) -> &'a [u8] ⓘ
fn uint8(&self, offset: usize) -> u8
fn uint16(&self, offset: usize) -> u16
fn uint32(&self, offset: usize) -> u32
fn uint24(&self, offset: usize) -> u32
fn int8(&self, offset: usize) -> i8
fn int16(&self, offset: usize) -> i16
fn int32(&self, offset: usize) -> i32
fn fixed(&self, offset: usize) -> Fixed
fn f2dot14(&self, offset: usize) -> F2Dot14
fn longdatetime(&self, offset: usize) -> LongDateTime
fn tag(&self, offset: usize) -> &'a Tag
fn version16dot16(&self, offset: usize) -> Version16Dot16
fn item<T: Pod>(&self, offset: usize) -> &'a T
fn array<T: Pod>(&self, offset: usize, count: usize) -> &'a [T]
fn uint16_array(&self, offset: usize, count: usize) -> U16Array<'a>
fn int16_array(&self, offset: usize, count: usize) -> I16Array<'a>
fn uint32_array(&self, offset: usize, count: usize) -> U32Array<'a>
impl Copy for TableRecord
impl Pod for TableRecord
Auto Trait Implementations§
impl Freeze for TableRecord
impl RefUnwindSafe for TableRecord
impl Send for TableRecord
impl Sync for TableRecord
impl Unpin for TableRecord
impl UnwindSafe for TableRecord
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.