pub struct DbfField {
pub name: String,
pub kind: u8,
pub length: u8,
pub decimals: u8,
pub offset_in_record: usize,
}Fields§
§name: String§kind: u8§length: u8§decimals: u8§offset_in_record: usizeByte offset of this field within a record (after the 1-byte deletion flag).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbfField
impl RefUnwindSafe for DbfField
impl Send for DbfField
impl Sync for DbfField
impl Unpin for DbfField
impl UnsafeUnpin for DbfField
impl UnwindSafe for DbfField
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