pub struct GetOutputItems {
pub comment: Option<String>,
pub enabled: bool,
pub id: String,
pub last_run: Option<u64>,
pub next_run: Option<u64>,
pub realm: String,
pub remove_vanished: Option<String>,
pub schedule: String,
pub scope: Option<Scope>,
pub additional_properties: HashMap<String, Value>,
}
Fields§
§comment: Option<String>
A comment for the job.
enabled: bool
If the job is enabled or not.
id: String
The ID of the entry.
last_run: Option<u64>
Last execution time of the job in seconds since the beginning of the UNIX epoch
next_run: Option<u64>
Next planned execution time of the job in seconds since the beginning of the UNIX epoch.
realm: String
Authentication domain ID
remove_vanished: Option<String>
A semicolon-seperated list of things to remove when they or the user vanishes during a sync. The following values are possible: ‘entry’ removes the user/group when not returned from the sync. ‘properties’ removes the set properties on existing user/group that do not appear in the source (even custom ones). ‘acl’ removes acls when the user/group is not returned from the sync. Instead of a list it also can be ‘none’ (the default).
schedule: String
The configured sync schedule.
scope: Option<Scope>
Select what to sync.
additional_properties: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl Clone for GetOutputItems
impl Clone for GetOutputItems
Source§fn clone(&self) -> GetOutputItems
fn clone(&self) -> GetOutputItems
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 GetOutputItems
impl Debug for GetOutputItems
Source§impl<'de> Deserialize<'de> for GetOutputItems
impl<'de> Deserialize<'de> for GetOutputItems
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 GetOutputItems
impl RefUnwindSafe for GetOutputItems
impl Send for GetOutputItems
impl Sync for GetOutputItems
impl Unpin for GetOutputItems
impl UnwindSafe for GetOutputItems
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