pub struct RecommendationOptions {
pub min_playtime: Option<i32>,
pub max_playtime: Option<i32>,
pub limit: usize,
pub ignored_game_ids: Option<Vec<String>>,
pub config: Option<RecommendationConfig>,
}Expand description
Struct auxiliar para input de configuração opcional
Fields§
§min_playtime: Option<i32>§max_playtime: Option<i32>§limit: usize§ignored_game_ids: Option<Vec<String>>§config: Option<RecommendationConfig>Trait Implementations§
Source§impl Debug for RecommendationOptions
impl Debug for RecommendationOptions
Source§impl<'de> Deserialize<'de> for RecommendationOptions
impl<'de> Deserialize<'de> for RecommendationOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RecommendationOptions
impl RefUnwindSafe for RecommendationOptions
impl Send for RecommendationOptions
impl Sync for RecommendationOptions
impl Unpin for RecommendationOptions
impl UnwindSafe for RecommendationOptions
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