pub struct LightningNodeCountry {
pub en: String,
pub code: String,
}Expand description
Node country information.
Fields§
§en: StringCountry name
code: StringCountry code
Trait Implementations§
Source§impl Clone for LightningNodeCountry
impl Clone for LightningNodeCountry
Source§fn clone(&self) -> LightningNodeCountry
fn clone(&self) -> LightningNodeCountry
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 LightningNodeCountry
impl Debug for LightningNodeCountry
Source§impl<'de> Deserialize<'de> for LightningNodeCountry
impl<'de> Deserialize<'de> for LightningNodeCountry
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 LightningNodeCountry
impl PartialEq for LightningNodeCountry
Source§impl Serialize for LightningNodeCountry
impl Serialize for LightningNodeCountry
impl StructuralPartialEq for LightningNodeCountry
Auto Trait Implementations§
impl Freeze for LightningNodeCountry
impl RefUnwindSafe for LightningNodeCountry
impl Send for LightningNodeCountry
impl Sync for LightningNodeCountry
impl Unpin for LightningNodeCountry
impl UnwindSafe for LightningNodeCountry
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