pub struct OnPremDomainDetails {
pub disable_sid_filtering: Option<bool>,
pub domain_name: Option<String>,
}Expand description
OnPremDomainDetails is the message which contains details of on-prem domain which is trusted and needs to be migrated.
This type is not used in any activity, and only used as part of another schema.
Fields§
§disable_sid_filtering: Option<bool>Optional. Option to disable SID filtering.
domain_name: Option<String>Required. FQDN of the on-prem domain being migrated.
Trait Implementations§
Source§impl Clone for OnPremDomainDetails
impl Clone for OnPremDomainDetails
Source§fn clone(&self) -> OnPremDomainDetails
fn clone(&self) -> OnPremDomainDetails
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 OnPremDomainDetails
impl Debug for OnPremDomainDetails
Source§impl Default for OnPremDomainDetails
impl Default for OnPremDomainDetails
Source§fn default() -> OnPremDomainDetails
fn default() -> OnPremDomainDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OnPremDomainDetails
impl<'de> Deserialize<'de> for OnPremDomainDetails
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 Serialize for OnPremDomainDetails
impl Serialize for OnPremDomainDetails
impl Part for OnPremDomainDetails
Auto Trait Implementations§
impl Freeze for OnPremDomainDetails
impl RefUnwindSafe for OnPremDomainDetails
impl Send for OnPremDomainDetails
impl Sync for OnPremDomainDetails
impl Unpin for OnPremDomainDetails
impl UnwindSafe for OnPremDomainDetails
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