pub struct WindowsServiceAttributes {
pub connection_type: Option<String>,
pub iis_app_pool: Option<bool>,
pub port: Option<String>,
pub skip_restart: Option<bool>,
pub use_tls: Option<bool>,
}Fields§
§connection_type: Option<String>§iis_app_pool: Option<bool>IISAppPool marks this entry as an IIS Application Pool rather than a Windows Service
port: Option<String>§skip_restart: Option<bool>SkipRestart allows skipping recycle/start of the IIS App Pool after credential update
use_tls: Option<bool>Implementations§
Source§impl WindowsServiceAttributes
impl WindowsServiceAttributes
pub fn new() -> WindowsServiceAttributes
Trait Implementations§
Source§impl Clone for WindowsServiceAttributes
impl Clone for WindowsServiceAttributes
Source§fn clone(&self) -> WindowsServiceAttributes
fn clone(&self) -> WindowsServiceAttributes
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 WindowsServiceAttributes
impl Debug for WindowsServiceAttributes
Source§impl Default for WindowsServiceAttributes
impl Default for WindowsServiceAttributes
Source§fn default() -> WindowsServiceAttributes
fn default() -> WindowsServiceAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowsServiceAttributes
impl<'de> Deserialize<'de> for WindowsServiceAttributes
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 WindowsServiceAttributes
impl PartialEq for WindowsServiceAttributes
Source§fn eq(&self, other: &WindowsServiceAttributes) -> bool
fn eq(&self, other: &WindowsServiceAttributes) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WindowsServiceAttributes
impl Serialize for WindowsServiceAttributes
impl StructuralPartialEq for WindowsServiceAttributes
Auto Trait Implementations§
impl Freeze for WindowsServiceAttributes
impl RefUnwindSafe for WindowsServiceAttributes
impl Send for WindowsServiceAttributes
impl Sync for WindowsServiceAttributes
impl Unpin for WindowsServiceAttributes
impl UnsafeUnpin for WindowsServiceAttributes
impl UnwindSafe for WindowsServiceAttributes
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