pub struct GetCountryListResponse {
pub countries: Option<Vec<GetCountryListResponseCountriesInner>>,
pub last_updated: Option<i64>,
}Fields§
§countries: Option<Vec<GetCountryListResponseCountriesInner>>§last_updated: Option<i64>Last data update timestamp (epoch milliseconds); 0 if empty.
Implementations§
Source§impl GetCountryListResponse
impl GetCountryListResponse
pub fn new() -> GetCountryListResponse
Trait Implementations§
Source§impl Clone for GetCountryListResponse
impl Clone for GetCountryListResponse
Source§fn clone(&self) -> GetCountryListResponse
fn clone(&self) -> GetCountryListResponse
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 GetCountryListResponse
impl Debug for GetCountryListResponse
Source§impl Default for GetCountryListResponse
impl Default for GetCountryListResponse
Source§fn default() -> GetCountryListResponse
fn default() -> GetCountryListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCountryListResponse
impl<'de> Deserialize<'de> for GetCountryListResponse
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 PartialEq for GetCountryListResponse
impl PartialEq for GetCountryListResponse
Source§impl Serialize for GetCountryListResponse
impl Serialize for GetCountryListResponse
impl StructuralPartialEq for GetCountryListResponse
Auto Trait Implementations§
impl Freeze for GetCountryListResponse
impl RefUnwindSafe for GetCountryListResponse
impl Send for GetCountryListResponse
impl Sync for GetCountryListResponse
impl Unpin for GetCountryListResponse
impl UnsafeUnpin for GetCountryListResponse
impl UnwindSafe for GetCountryListResponse
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