oaapi 0.2.0

An unofficial Rust client for the OpenAI API.
Documentation
use std::fmt::{Display, Formatter};
use std::str::FromStr;

/// The timestamp granularity for the result of the transcription.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum TimestampGranularity {
    /// Segment-level timestamps.
    Segment,
    /// Word-level timestamps.
    Word,
}

impl Default for TimestampGranularity {
    fn default() -> Self {
        Self::Segment
    }
}

impl Display for TimestampGranularity {
    fn fmt(
        &self,
        f: &mut Formatter<'_>,
    ) -> std::fmt::Result {
        match self {
            | TimestampGranularity::Segment => {
                write!(f, "segment")
            },
            | TimestampGranularity::Word => {
                write!(f, "word")
            },
        }
    }
}

impl FromStr for TimestampGranularity {
    type Err = crate::ValidationError<String>;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            | "segment" => Ok(TimestampGranularity::Segment),
            | "word" => Ok(TimestampGranularity::Word),
            | _ => Err(crate::ValidationError {
                type_name: "TimestampGranularity".to_string(),
                reason: "Unknown timestamp granularity".to_string(),
                value: s.to_string(),
            }),
        }
    }
}