pub struct WindowsTargetDetails {
pub certificate: Option<String>,
pub connection_type: Option<String>,
pub domain_name: Option<String>,
pub hostname: Option<String>,
pub password: Option<String>,
pub port: Option<String>,
pub use_tls: Option<bool>,
pub username: Option<String>,
}Expand description
WindowsTargetDetails : WindowsTargetDetails
Fields§
§certificate: Option<String>§connection_type: Option<String>§domain_name: Option<String>§hostname: Option<String>§password: Option<String>§port: Option<String>§use_tls: Option<bool>§username: Option<String>Implementations§
Source§impl WindowsTargetDetails
impl WindowsTargetDetails
Sourcepub fn new() -> WindowsTargetDetails
pub fn new() -> WindowsTargetDetails
WindowsTargetDetails
Trait Implementations§
Source§impl Clone for WindowsTargetDetails
impl Clone for WindowsTargetDetails
Source§fn clone(&self) -> WindowsTargetDetails
fn clone(&self) -> WindowsTargetDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WindowsTargetDetails
impl Debug for WindowsTargetDetails
Source§impl Default for WindowsTargetDetails
impl Default for WindowsTargetDetails
Source§fn default() -> WindowsTargetDetails
fn default() -> WindowsTargetDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowsTargetDetails
impl<'de> Deserialize<'de> for WindowsTargetDetails
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 WindowsTargetDetails
impl PartialEq for WindowsTargetDetails
Source§fn eq(&self, other: &WindowsTargetDetails) -> bool
fn eq(&self, other: &WindowsTargetDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WindowsTargetDetails
impl Serialize for WindowsTargetDetails
impl StructuralPartialEq for WindowsTargetDetails
Auto Trait Implementations§
impl Freeze for WindowsTargetDetails
impl RefUnwindSafe for WindowsTargetDetails
impl Send for WindowsTargetDetails
impl Sync for WindowsTargetDetails
impl Unpin for WindowsTargetDetails
impl UnsafeUnpin for WindowsTargetDetails
impl UnwindSafe for WindowsTargetDetails
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