pub struct PingTargetDetails {
pub administrative_port: Option<String>,
pub authorization_port: Option<String>,
pub ping_url: Option<String>,
pub privileged_user: Option<String>,
pub user_password: Option<String>,
}Expand description
PingTargetDetails : PingTargetDetails
Fields§
§administrative_port: Option<String>§ping_url: Option<String>§privileged_user: Option<String>§user_password: Option<String>Implementations§
Source§impl PingTargetDetails
impl PingTargetDetails
Sourcepub fn new() -> PingTargetDetails
pub fn new() -> PingTargetDetails
PingTargetDetails
Trait Implementations§
Source§impl Clone for PingTargetDetails
impl Clone for PingTargetDetails
Source§fn clone(&self) -> PingTargetDetails
fn clone(&self) -> PingTargetDetails
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 PingTargetDetails
impl Debug for PingTargetDetails
Source§impl Default for PingTargetDetails
impl Default for PingTargetDetails
Source§fn default() -> PingTargetDetails
fn default() -> PingTargetDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PingTargetDetails
impl<'de> Deserialize<'de> for PingTargetDetails
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 PingTargetDetails
impl PartialEq for PingTargetDetails
Source§fn eq(&self, other: &PingTargetDetails) -> bool
fn eq(&self, other: &PingTargetDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PingTargetDetails
impl Serialize for PingTargetDetails
impl StructuralPartialEq for PingTargetDetails
Auto Trait Implementations§
impl Freeze for PingTargetDetails
impl RefUnwindSafe for PingTargetDetails
impl Send for PingTargetDetails
impl Sync for PingTargetDetails
impl Unpin for PingTargetDetails
impl UnsafeUnpin for PingTargetDetails
impl UnwindSafe for PingTargetDetails
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