pub struct RemoteConnection {
pub web_url: Option<String>,
pub rdp_connection_url: Option<String>,
}Expand description
Provides RDP connection information
Fields§
§web_url: Option<String>URL to open a browser based RDP session
rdp_connection_url: Option<String>Link to open a Remote Desktop session
Implementations§
Trait Implementations§
Source§impl Clone for RemoteConnection
impl Clone for RemoteConnection
Source§fn clone(&self) -> RemoteConnection
fn clone(&self) -> RemoteConnection
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 RemoteConnection
impl Debug for RemoteConnection
Source§impl Default for RemoteConnection
impl Default for RemoteConnection
Source§fn default() -> RemoteConnection
fn default() -> RemoteConnection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteConnection
impl<'de> Deserialize<'de> for RemoteConnection
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 RemoteConnection
impl PartialEq for RemoteConnection
Source§impl Serialize for RemoteConnection
impl Serialize for RemoteConnection
impl StructuralPartialEq for RemoteConnection
Auto Trait Implementations§
impl Freeze for RemoteConnection
impl RefUnwindSafe for RemoteConnection
impl Send for RemoteConnection
impl Sync for RemoteConnection
impl Unpin for RemoteConnection
impl UnwindSafe for RemoteConnection
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