pub struct EnrolledHandles {
pub state: OrgState,
pub api: Arc<OrgApi>,
pub policy: PolicyPullHandle,
pub audit: Arc<AuditSink>,
pub _heartbeat_task: JoinHandle<()>,
}Expand description
Handles returned when org mode is active. Held by main() for the
lifetime of the process.
Fields§
§state: OrgState§api: Arc<OrgApi>§policy: PolicyPullHandle§audit: Arc<AuditSink>§_heartbeat_task: JoinHandle<()>Auto Trait Implementations§
impl !RefUnwindSafe for EnrolledHandles
impl !UnwindSafe for EnrolledHandles
impl Freeze for EnrolledHandles
impl Send for EnrolledHandles
impl Sync for EnrolledHandles
impl Unpin for EnrolledHandles
impl UnsafeUnpin for EnrolledHandles
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