pub struct LdapSyncStatus {
pub is_running: bool,
pub tasks: Vec<SystemTask>,
}
Expand description
LdapSyncStatus : LDAP Source sync status
Fields§
§is_running: bool
§tasks: Vec<SystemTask>
Implementations§
Source§impl LdapSyncStatus
impl LdapSyncStatus
Sourcepub fn new(is_running: bool, tasks: Vec<SystemTask>) -> LdapSyncStatus
pub fn new(is_running: bool, tasks: Vec<SystemTask>) -> LdapSyncStatus
LDAP Source sync status
Trait Implementations§
Source§impl Clone for LdapSyncStatus
impl Clone for LdapSyncStatus
Source§fn clone(&self) -> LdapSyncStatus
fn clone(&self) -> LdapSyncStatus
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 LdapSyncStatus
impl Debug for LdapSyncStatus
Source§impl Default for LdapSyncStatus
impl Default for LdapSyncStatus
Source§fn default() -> LdapSyncStatus
fn default() -> LdapSyncStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LdapSyncStatus
impl<'de> Deserialize<'de> for LdapSyncStatus
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 LdapSyncStatus
impl PartialEq for LdapSyncStatus
Source§impl Serialize for LdapSyncStatus
impl Serialize for LdapSyncStatus
impl StructuralPartialEq for LdapSyncStatus
Auto Trait Implementations§
impl Freeze for LdapSyncStatus
impl RefUnwindSafe for LdapSyncStatus
impl Send for LdapSyncStatus
impl Sync for LdapSyncStatus
impl Unpin for LdapSyncStatus
impl UnwindSafe for LdapSyncStatus
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