pub struct RdpConfig {
pub host: String,
pub port: u16,
pub username: String,
pub password: String,
pub domain: Option<String>,
pub width: u16,
pub height: u16,
}Fields§
§host: String§port: u16§username: String§password: StringCredential slot — consumed by the NLA handshake once RdpClient::connect
gets a real implementation (see rdp_client.rs).
domain: Option<String>§width: u16§height: u16Trait Implementations§
Auto Trait Implementations§
impl Freeze for RdpConfig
impl RefUnwindSafe for RdpConfig
impl Send for RdpConfig
impl Sync for RdpConfig
impl Unpin for RdpConfig
impl UnsafeUnpin for RdpConfig
impl UnwindSafe for RdpConfig
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