pub struct CountryGovernment {
pub government: String,
pub reform_stack: CountryGovernmentReforms,
}Fields§
§government: String§reform_stack: CountryGovernmentReformsTrait Implementations§
Source§impl Clone for CountryGovernment
impl Clone for CountryGovernment
Source§fn clone(&self) -> CountryGovernment
fn clone(&self) -> CountryGovernment
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 CountryGovernment
impl Debug for CountryGovernment
Source§impl Default for CountryGovernment
impl Default for CountryGovernment
Source§fn default() -> CountryGovernment
fn default() -> CountryGovernment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CountryGovernment
impl<'de> Deserialize<'de> for CountryGovernment
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
Auto Trait Implementations§
impl Freeze for CountryGovernment
impl RefUnwindSafe for CountryGovernment
impl Send for CountryGovernment
impl Sync for CountryGovernment
impl Unpin for CountryGovernment
impl UnwindSafe for CountryGovernment
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