pub struct AdsProviderDomainsDomain {
pub client_site: Option<String>,
pub dc_address: Option<String>,
pub dc_name: Option<String>,
pub dc_site: Option<String>,
pub domain: Option<String>,
pub guid: Option<String>,
pub id: Option<String>,
pub netbios_name: Option<String>,
pub sid: Option<String>,
pub status: Option<String>,
pub trust_type: Option<String>,
}Fields§
§client_site: Option<String>§dc_address: Option<String>§dc_name: Option<String>§dc_site: Option<String>§domain: Option<String>§guid: Option<String>§id: Option<String>Specifies a unique identifier for every domain returned.
netbios_name: Option<String>§sid: Option<String>§status: Option<String>Specifies the status of the domain.
trust_type: Option<String>Specifies the type of trust for this domain. Options include ‘primary’, ‘unknown’, ‘external’, and ‘forest’.
Trait Implementations§
Source§impl Debug for AdsProviderDomainsDomain
impl Debug for AdsProviderDomainsDomain
Source§impl<'de> Deserialize<'de> for AdsProviderDomainsDomain
impl<'de> Deserialize<'de> for AdsProviderDomainsDomain
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
Auto Trait Implementations§
impl Freeze for AdsProviderDomainsDomain
impl RefUnwindSafe for AdsProviderDomainsDomain
impl Send for AdsProviderDomainsDomain
impl Sync for AdsProviderDomainsDomain
impl Unpin for AdsProviderDomainsDomain
impl UnwindSafe for AdsProviderDomainsDomain
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more