pub struct ServerInventoryPayload {
pub auto_rotate: Option<bool>,
pub auto_rotate_interval_in_days: Option<i32>,
pub auto_rotate_rotation_hour: Option<i32>,
pub enable_rdp_sra: Option<bool>,
pub migration_target_id: Option<i64>,
pub server_targets_path_template: Option<String>,
pub user_groups: Option<Vec<String>>,
pub users_ignore_list: Option<HashMap<String, bool>>,
pub users_rotated_secrets_path_template: Option<String>,
}Fields§
§auto_rotate: Option<bool>§auto_rotate_interval_in_days: Option<i32>§auto_rotate_rotation_hour: Option<i32>§enable_rdp_sra: Option<bool>§migration_target_id: Option<i64>§server_targets_path_template: Option<String>§user_groups: Option<Vec<String>>§users_ignore_list: Option<HashMap<String, bool>>§users_rotated_secrets_path_template: Option<String>Implementations§
Source§impl ServerInventoryPayload
impl ServerInventoryPayload
pub fn new() -> ServerInventoryPayload
Trait Implementations§
Source§impl Clone for ServerInventoryPayload
impl Clone for ServerInventoryPayload
Source§fn clone(&self) -> ServerInventoryPayload
fn clone(&self) -> ServerInventoryPayload
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 ServerInventoryPayload
impl Debug for ServerInventoryPayload
Source§impl Default for ServerInventoryPayload
impl Default for ServerInventoryPayload
Source§fn default() -> ServerInventoryPayload
fn default() -> ServerInventoryPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerInventoryPayload
impl<'de> Deserialize<'de> for ServerInventoryPayload
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 ServerInventoryPayload
impl PartialEq for ServerInventoryPayload
Source§fn eq(&self, other: &ServerInventoryPayload) -> bool
fn eq(&self, other: &ServerInventoryPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServerInventoryPayload
impl Serialize for ServerInventoryPayload
impl StructuralPartialEq for ServerInventoryPayload
Auto Trait Implementations§
impl Freeze for ServerInventoryPayload
impl RefUnwindSafe for ServerInventoryPayload
impl Send for ServerInventoryPayload
impl Sync for ServerInventoryPayload
impl Unpin for ServerInventoryPayload
impl UnsafeUnpin for ServerInventoryPayload
impl UnwindSafe for ServerInventoryPayload
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