pub struct People {Show 16 fields
pub birth_year: String,
pub eye_color: String,
pub films: Vec<String>,
pub gender: String,
pub hair_color: String,
pub height: String,
pub homeworld: String,
pub mass: String,
pub name: String,
pub skin_color: String,
pub created: String,
pub edited: String,
pub species: Vec<String>,
pub starships: Vec<String>,
pub url: String,
pub vehicles: Vec<String>,
}
Expand description
People resource within the Star Wars universe.
Fields§
§birth_year: String
§eye_color: String
§films: Vec<String>
§gender: String
§hair_color: String
§height: String
§homeworld: String
§mass: String
§name: String
§skin_color: String
§created: String
§edited: String
§species: Vec<String>
§starships: Vec<String>
§url: String
§vehicles: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for People
impl<'de> Deserialize<'de> for People
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
Source§impl QueryDetail for People
impl QueryDetail for People
Auto Trait Implementations§
impl Freeze for People
impl RefUnwindSafe for People
impl Send for People
impl Sync for People
impl Unpin for People
impl UnwindSafe for People
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