pub struct CountryList {
pub total: i64,
pub countries: Vec<Country>,
}Fields§
§total: i64§countries: Vec<Country>Implementations§
Trait Implementations§
Source§impl Clone for CountryList
impl Clone for CountryList
Source§fn clone(&self) -> CountryList
fn clone(&self) -> CountryList
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 CountryList
impl Debug for CountryList
Source§impl<'de> Deserialize<'de> for CountryList
impl<'de> Deserialize<'de> for CountryList
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 CountryList
impl Display for CountryList
Auto Trait Implementations§
impl Freeze for CountryList
impl RefUnwindSafe for CountryList
impl Send for CountryList
impl Sync for CountryList
impl Unpin for CountryList
impl UnwindSafe for CountryList
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