pub struct ProxyLocation {
pub code: String,
pub name: String,
pub country: Option<String>,
}Fields§
§code: String§name: String§country: Option<String>Trait Implementations§
Source§impl Clone for ProxyLocation
impl Clone for ProxyLocation
Source§fn clone(&self) -> ProxyLocation
fn clone(&self) -> ProxyLocation
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 ProxyLocation
impl Debug for ProxyLocation
Source§impl<'de> Deserialize<'de> for ProxyLocation
impl<'de> Deserialize<'de> for ProxyLocation
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
impl Eq for ProxyLocation
Source§impl PartialEq for ProxyLocation
impl PartialEq for ProxyLocation
Source§impl Serialize for ProxyLocation
impl Serialize for ProxyLocation
impl StructuralPartialEq for ProxyLocation
Source§impl Validate for ProxyLocation
impl Validate for ProxyLocation
Auto Trait Implementations§
impl Freeze for ProxyLocation
impl RefUnwindSafe for ProxyLocation
impl Send for ProxyLocation
impl Sync for ProxyLocation
impl Unpin for ProxyLocation
impl UnsafeUnpin for ProxyLocation
impl UnwindSafe for ProxyLocation
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