pub struct LanguageDependencePoll {
pub title: String,
pub total_voters: u64,
pub results: Vec<LanguageDependence>,
}Expand description
A user answered poll for how playable the game would be, should the player not speak the language.
Fields§
§title: StringUser friendly name for the poll.
total_voters: u64Total number of users who voted on this poll.
results: Vec<LanguageDependence>Results for this poll, contains 5 levels of severity ranging from no necessary in game text to being unplayable in another language.
Trait Implementations§
Source§impl Clone for LanguageDependencePoll
impl Clone for LanguageDependencePoll
Source§fn clone(&self) -> LanguageDependencePoll
fn clone(&self) -> LanguageDependencePoll
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LanguageDependencePoll
impl Debug for LanguageDependencePoll
Source§impl PartialEq for LanguageDependencePoll
impl PartialEq for LanguageDependencePoll
impl Eq for LanguageDependencePoll
impl StructuralPartialEq for LanguageDependencePoll
Auto Trait Implementations§
impl Freeze for LanguageDependencePoll
impl RefUnwindSafe for LanguageDependencePoll
impl Send for LanguageDependencePoll
impl Sync for LanguageDependencePoll
impl Unpin for LanguageDependencePoll
impl UnwindSafe for LanguageDependencePoll
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.