pub trait FromRatingSet {
    // Required method
    fn create(user: i32, item: i32, ratings: Vec<(f32, i64)>) -> Self;
}
Expand description

Collapse a sequence of ratings into a rating record.

Required Methods§

source

fn create(user: i32, item: i32, ratings: Vec<(f32, i64)>) -> Self

Object Safety§

This trait is not object safe.

Implementors§