pub struct LineVty {
pub exec_timeout_min: u32,
pub exec_timeout_sec: u32,
pub transport_input: Vec<String>,
pub logging_synchronous: bool,
}Expand description
line vty 0 4 (or 0 15) configuration block.
Fields§
§exec_timeout_min: u32exec-timeout <min> portion.
exec_timeout_sec: u32exec-timeout <min> <sec> seconds portion.
transport_input: Vec<String>transport input protocols (e.g. ["ssh"], ["ssh", "telnet"]).
logging_synchronous: boollogging synchronous
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LineVty
impl<'de> Deserialize<'de> for LineVty
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LineVty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LineVty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for LineVty
impl Serialize for LineVty
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LineVty
impl RefUnwindSafe for LineVty
impl Send for LineVty
impl Sync for LineVty
impl Unpin for LineVty
impl UnsafeUnpin for LineVty
impl UnwindSafe for LineVty
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