pub struct ContinentList {
pub total: i64,
pub continents: Vec<Continent>,
}Fields§
§total: i64§continents: Vec<Continent>Implementations§
Trait Implementations§
Source§impl Clone for ContinentList
impl Clone for ContinentList
Source§fn clone(&self) -> ContinentList
fn clone(&self) -> ContinentList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContinentList
impl Debug for ContinentList
Source§impl<'de> Deserialize<'de> for ContinentList
impl<'de> Deserialize<'de> for ContinentList
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 Display for ContinentList
impl Display for ContinentList
Auto Trait Implementations§
impl Freeze for ContinentList
impl RefUnwindSafe for ContinentList
impl Send for ContinentList
impl Sync for ContinentList
impl Unpin for ContinentList
impl UnsafeUnpin for ContinentList
impl UnwindSafe for ContinentList
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