Struct bookdata::amazon::ReviewRow

source ·
pub struct ReviewRow {
    pub user: i32,
    pub asin: String,
    pub rating: f32,
    pub timestamp: i64,
    pub summary: String,
    pub text: String,
}
Expand description

Structure for scanned reviews.

This data structure is serialized to reviews.parquet in the Amazon directories.

Fields§

§user: i32§asin: String§rating: f32§timestamp: i64§summary: String§text: String

Trait Implementations§

source§

impl<'de> Deserialize<'de> for ReviewRow

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl FrameBuilder<ReviewRow> for ReviewRowFrameBuilder

source§

fn with_capacity(cap: usize) -> Self

Instantiate a frame builder with a specified capacity.
source§

fn append_row(&mut self, row: ReviewRow)

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, ReviewRow> for ReviewRowFrame<'a>

source§

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

source§

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

source§

impl Serialize for ReviewRow

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TableRow for ReviewRow

§

type Frame<'a> = ReviewRowFrame<'a>

The frame struct for this row type.
§

type Builder = ReviewRowFrameBuilder

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

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,