pub trait AddFields {
Show 32 methods
// Required methods
fn add_id(&mut self) -> &mut Self;
fn add_title(&mut self) -> &mut Self;
fn add_main_picture(&mut self) -> &mut Self;
fn add_alt_titles(&mut self) -> &mut Self;
fn add_start_date(&mut self) -> &mut Self;
fn add_end_date(&mut self) -> &mut Self;
fn add_synopsis(&mut self) -> &mut Self;
fn add_mean(&mut self) -> &mut Self;
fn add_rank(&mut self) -> &mut Self;
fn add_popularity(&mut self) -> &mut Self;
fn add_num_list_users(&mut self) -> &mut Self;
fn add_num_scoring_users(&mut self) -> &mut Self;
fn add_nsfw(&mut self) -> &mut Self;
fn add_created_at(&mut self) -> &mut Self;
fn add_updated_at(&mut self) -> &mut Self;
fn add_media_type(&mut self) -> &mut Self;
fn add_status(&mut self) -> &mut Self;
fn add_genres(&mut self) -> &mut Self;
fn add_my_list_status(&mut self) -> &mut Self;
fn add_start_season(&mut self) -> &mut Self;
fn add_num_episodes(&mut self) -> &mut Self;
fn add_broadcast(&mut self) -> &mut Self;
fn add_source(&mut self) -> &mut Self;
fn add_average_episode_duration(&mut self) -> &mut Self;
fn add_rating(&mut self) -> &mut Self;
fn add_pictures(&mut self) -> &mut Self;
fn add_background(&mut self) -> &mut Self;
fn add_related_anime(&mut self) -> &mut Self;
fn add_related_manga(&mut self) -> &mut Self;
fn add_recommendations(&mut self) -> &mut Self;
fn add_studios(&mut self) -> &mut Self;
fn add_statistics(&mut self) -> &mut Self;
}Required Methods§
fn add_id(&mut self) -> &mut Self
fn add_title(&mut self) -> &mut Self
fn add_main_picture(&mut self) -> &mut Self
fn add_alt_titles(&mut self) -> &mut Self
fn add_start_date(&mut self) -> &mut Self
fn add_end_date(&mut self) -> &mut Self
fn add_synopsis(&mut self) -> &mut Self
fn add_mean(&mut self) -> &mut Self
fn add_rank(&mut self) -> &mut Self
fn add_popularity(&mut self) -> &mut Self
fn add_num_list_users(&mut self) -> &mut Self
fn add_num_scoring_users(&mut self) -> &mut Self
fn add_nsfw(&mut self) -> &mut Self
fn add_created_at(&mut self) -> &mut Self
fn add_updated_at(&mut self) -> &mut Self
fn add_media_type(&mut self) -> &mut Self
fn add_status(&mut self) -> &mut Self
fn add_genres(&mut self) -> &mut Self
fn add_my_list_status(&mut self) -> &mut Self
fn add_start_season(&mut self) -> &mut Self
fn add_num_episodes(&mut self) -> &mut Self
fn add_broadcast(&mut self) -> &mut Self
fn add_source(&mut self) -> &mut Self
fn add_average_episode_duration(&mut self) -> &mut Self
fn add_rating(&mut self) -> &mut Self
fn add_pictures(&mut self) -> &mut Self
fn add_background(&mut self) -> &mut Self
fn add_recommendations(&mut self) -> &mut Self
fn add_studios(&mut self) -> &mut Self
fn add_statistics(&mut self) -> &mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.