canvas-lms-api 0.7.0

Rust client for the Instructure Canvas LMS REST API
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

/// A Canvas JWT token, used with other Canvas services.
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct CanvasJwt {
    pub token: Option<String>,
    pub expires_at: Option<String>,
}