pub struct PlanLLMLimits {
pub tier_access: Option<Vec<PlanLLMLimitsTierAccessItem>>,
pub tokens_per_month: Option<i64>,
pub requests_per_minute: Option<i64>,
pub requests_per_hour: Option<i64>,
pub requests_per_day: Option<i64>,
}Expand description
PlanLLMLimits model.
Fields§
§tier_access: Option<Vec<PlanLLMLimitsTierAccessItem>>§tokens_per_month: Option<i64>§requests_per_minute: Option<i64>§requests_per_hour: Option<i64>§requests_per_day: Option<i64>Trait Implementations§
Source§impl Clone for PlanLLMLimits
impl Clone for PlanLLMLimits
Source§fn clone(&self) -> PlanLLMLimits
fn clone(&self) -> PlanLLMLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlanLLMLimits
impl Debug for PlanLLMLimits
Source§impl Default for PlanLLMLimits
impl Default for PlanLLMLimits
Source§fn default() -> PlanLLMLimits
fn default() -> PlanLLMLimits
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlanLLMLimits
impl<'de> Deserialize<'de> for PlanLLMLimits
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlanLLMLimits
impl PartialEq for PlanLLMLimits
Source§impl Serialize for PlanLLMLimits
impl Serialize for PlanLLMLimits
impl StructuralPartialEq for PlanLLMLimits
Auto Trait Implementations§
impl Freeze for PlanLLMLimits
impl RefUnwindSafe for PlanLLMLimits
impl Send for PlanLLMLimits
impl Sync for PlanLLMLimits
impl Unpin for PlanLLMLimits
impl UnsafeUnpin for PlanLLMLimits
impl UnwindSafe for PlanLLMLimits
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