pub struct AccessDomainsCreateSyncRequest {
pub dry_run: Option<bool>,
pub enable_new: Option<bool>,
pub remove_vanished: Option<Box<PbsRemoveVanishedField>>,
}Fields§
§dry_run: Option<bool>If set, do not create/delete anything
enable_new: Option<bool>Enable newly synced users immediately
remove_vanished: Option<Box<PbsRemoveVanishedField>>A semicolon-separated list of things to remove when they or the user vanishes during user synchronization. The following values are possible: entry removes the user when not returned from the sync; properties removes any properties on existing user that do not appear in the source. acl removes ACLs when the user is not returned from the sync.
Implementations§
Trait Implementations§
Source§impl Clone for AccessDomainsCreateSyncRequest
impl Clone for AccessDomainsCreateSyncRequest
Source§fn clone(&self) -> AccessDomainsCreateSyncRequest
fn clone(&self) -> AccessDomainsCreateSyncRequest
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 Default for AccessDomainsCreateSyncRequest
impl Default for AccessDomainsCreateSyncRequest
Source§fn default() -> AccessDomainsCreateSyncRequest
fn default() -> AccessDomainsCreateSyncRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessDomainsCreateSyncRequest
impl<'de> Deserialize<'de> for AccessDomainsCreateSyncRequest
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 AccessDomainsCreateSyncRequest
impl PartialEq for AccessDomainsCreateSyncRequest
Source§fn eq(&self, other: &AccessDomainsCreateSyncRequest) -> bool
fn eq(&self, other: &AccessDomainsCreateSyncRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccessDomainsCreateSyncRequest
Auto Trait Implementations§
impl Freeze for AccessDomainsCreateSyncRequest
impl RefUnwindSafe for AccessDomainsCreateSyncRequest
impl Send for AccessDomainsCreateSyncRequest
impl Sync for AccessDomainsCreateSyncRequest
impl Unpin for AccessDomainsCreateSyncRequest
impl UnsafeUnpin for AccessDomainsCreateSyncRequest
impl UnwindSafe for AccessDomainsCreateSyncRequest
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