pub struct ForwardingConfig {
pub forwarding_mode: Option<String>,
pub reverse_forwarding_mode: Option<String>,
pub socket_forwarding_mode: Option<String>,
pub socket_listen_mode: Option<String>,
pub x11_forwarding_mode: Option<String>,
}
Fields§
§forwarding_mode: Option<String>
§reverse_forwarding_mode: Option<String>
§socket_forwarding_mode: Option<String>
§socket_listen_mode: Option<String>
§x11_forwarding_mode: Option<String>
Implementations§
Source§impl ForwardingConfig
impl ForwardingConfig
pub fn new() -> ForwardingConfig
Trait Implementations§
Source§impl Clone for ForwardingConfig
impl Clone for ForwardingConfig
Source§fn clone(&self) -> ForwardingConfig
fn clone(&self) -> ForwardingConfig
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 ForwardingConfig
impl Debug for ForwardingConfig
Source§impl<'de> Deserialize<'de> for ForwardingConfig
impl<'de> Deserialize<'de> for ForwardingConfig
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 FromStr for ForwardingConfig
Converts Query Parameters representation (style=form, explode=false) to a ForwardingConfig value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for ForwardingConfig
Converts Query Parameters representation (style=form, explode=false) to a ForwardingConfig value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for ForwardingConfig
impl PartialEq for ForwardingConfig
Source§impl Serialize for ForwardingConfig
impl Serialize for ForwardingConfig
Source§impl ToString for ForwardingConfig
Converts the ForwardingConfig value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for ForwardingConfig
Converts the ForwardingConfig value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for ForwardingConfig
impl Validate for ForwardingConfig
Source§impl<'v_a> ValidateArgs<'v_a> for ForwardingConfig
impl<'v_a> ValidateArgs<'v_a> for ForwardingConfig
impl StructuralPartialEq for ForwardingConfig
Auto Trait Implementations§
impl Freeze for ForwardingConfig
impl RefUnwindSafe for ForwardingConfig
impl Send for ForwardingConfig
impl Sync for ForwardingConfig
impl Unpin for ForwardingConfig
impl UnwindSafe for ForwardingConfig
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