pub struct FieldRecord {
    pub rec_id: u32,
    pub fld_no: u32,
    pub tag: i16,
    pub ind1: u8,
    pub ind2: u8,
    pub sf_code: u8,
    pub contents: String,
}
Expand description

Flat MARC field record.

Fields§

§rec_id: u32§fld_no: u32§tag: i16§ind1: u8§ind2: u8§sf_code: u8§contents: String

Trait Implementations§

source§

impl Debug for FieldRecord

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for FieldRecord

source§

fn default() -> FieldRecord

Returns the “default value” for a type. Read more
source§

impl FrameBuilder<FieldRecord> for FieldRecordFrameBuilder

source§

fn with_capacity(cap: usize) -> Self

Instantiate a frame builder with a specified capacity.
source§

fn append_row(&mut self, row: FieldRecord)

Add a row to the frame builder.
source§

fn build(self) -> PolarsResult<DataFrame>

Finish the builder and create a data frame.
source§

fn extend<I>(&mut self, iter: I)
where I: IntoIterator<Item = R>,

Add an iterable of items to the frame.
source§

impl<'a> FrameStruct<'a, FieldRecord> for FieldRecordFrame<'a>

source§

fn new(df: &'a DataFrame) -> PolarsResult<Self>

source§

fn read_row(&mut self, idx: usize) -> Result<FieldRecord, RowError>

source§

impl TableRow for FieldRecord

§

type Frame<'a> = FieldRecordFrame<'a>

The frame struct for this row type.
§

type Builder = FieldRecordFrameBuilder

The frame builder type for this row type.
source§

fn schema() -> Schema

Get the schema for this table row.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoResult<T> for T

§

type Err = Infallible

source§

fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V