Crate checkr[][src]

Expand description

A rust library for interacting with the Checker API.

For more information, the Checker API is still is doumented here: https://docs.checkr.com

Example:

use checkr::Checkr;
use serde::{Deserialize, Serialize};

async fn get_candidates() {
    // Initialize the Checker client.
    let checkr = Checkr::new_from_env();

    // List the candidates.
    let candidates = checkr.list_candidates().await.unwrap();

    println!("{:?}", candidates);
}

Modules

deserialize_null_string

Structs

APIError

Error type returned by our library.

Candidate

The data type for a candidate.

CandidateRequest
CandidatesResponse

The data type for an API response.

Checkr

Entrypoint for interacting with the Checker API.

DrugScreening
EventData
EventObject
Invitation
InvitationRequest
InvitationsResponse

The data type for an API response.

Metadata
Report
WebhookEvent

The data type for a webhook event.