pub struct House {Show 16 fields
pub url: String,
pub name: String,
pub region: String,
pub coat_of_arms: String,
pub words: String,
pub titles: Vec<String>,
pub seats: Vec<String>,
pub current_lord: String,
pub heir: String,
pub overlord: String,
pub founded: String,
pub founder: String,
pub died_out: String,
pub ancestral_weapons: Vec<String>,
pub cadet_branches: Vec<String>,
pub sworn_members: Vec<String>,
}
Fields§
§url: String
§name: String
§region: String
§coat_of_arms: String
§words: String
§titles: Vec<String>
§seats: Vec<String>
§current_lord: String
§heir: String
§overlord: String
§founded: String
§founder: String
§died_out: String
§ancestral_weapons: Vec<String>
§cadet_branches: Vec<String>
§sworn_members: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for House
impl<'de> Deserialize<'de> for House
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
impl Eq for House
impl StructuralPartialEq for House
Auto Trait Implementations§
impl Freeze for House
impl RefUnwindSafe for House
impl Send for House
impl Sync for House
impl Unpin for House
impl UnwindSafe for House
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.