pub struct InternalLinkTypeProxy {
pub server: String,
pub port: i32,
pub type: ProxyType,
}
Expand description
The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy
Fields§
§server: String
Proxy server domain or IP address
port: i32
Proxy server port
type: ProxyType
Type of the proxy
Trait Implementations§
Source§impl Clone for InternalLinkTypeProxy
impl Clone for InternalLinkTypeProxy
Source§fn clone(&self) -> InternalLinkTypeProxy
fn clone(&self) -> InternalLinkTypeProxy
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 InternalLinkTypeProxy
impl Debug for InternalLinkTypeProxy
Source§impl<'de> Deserialize<'de> for InternalLinkTypeProxy
impl<'de> Deserialize<'de> for InternalLinkTypeProxy
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 InternalLinkTypeProxy
impl PartialEq for InternalLinkTypeProxy
Source§impl Serialize for InternalLinkTypeProxy
impl Serialize for InternalLinkTypeProxy
impl StructuralPartialEq for InternalLinkTypeProxy
Auto Trait Implementations§
impl Freeze for InternalLinkTypeProxy
impl RefUnwindSafe for InternalLinkTypeProxy
impl Send for InternalLinkTypeProxy
impl Sync for InternalLinkTypeProxy
impl Unpin for InternalLinkTypeProxy
impl UnwindSafe for InternalLinkTypeProxy
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