oaapi 0.2.0

An unofficial Rust client for the OpenAI API.
Documentation
use crate::{ValidationError, ValidationResult};
use serde::{Deserialize, Serialize};
use std::fmt::Display;

/// The bias.
///
/// ## Range
/// `[-100.0, 100.0]`
#[derive(Debug, Clone, Copy, PartialEq, Default, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Bias {
    value: f32,
}

impl Display for Bias {
    fn fmt(
        &self,
        f: &mut std::fmt::Formatter<'_>,
    ) -> std::fmt::Result {
        write!(f, "{}", self.value)
    }
}

impl Bias {
    /// Creates a new bias.
    ///
    /// ## Error
    /// - [`ValidationError`] - If the value is not between -100.0 and 100.0.
    pub fn new(value: f32) -> ValidationResult<Self, f32> {
        if value < -100.0 || value > 100.0 {
            Err(ValidationError {
                type_name: "Bias".to_string(),
                reason: "The value must be between -100.0 and 100.0."
                    .to_string(),
                value,
            })
        } else {
            Ok(Self {
                value,
            })
        }
    }
}