pub struct UsageLimitInfo {
pub run_id: String,
pub model_name: String,
pub kind: UsageLimitKind,
pub limit: u64,
pub usage: RunUsage,
}Fields§
§run_id: String§model_name: String§kind: UsageLimitKind§limit: u64§usage: RunUsageTrait Implementations§
Source§impl Clone for UsageLimitInfo
impl Clone for UsageLimitInfo
Source§fn clone(&self) -> UsageLimitInfo
fn clone(&self) -> UsageLimitInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UsageLimitInfo
impl RefUnwindSafe for UsageLimitInfo
impl Send for UsageLimitInfo
impl Sync for UsageLimitInfo
impl Unpin for UsageLimitInfo
impl UnwindSafe for UsageLimitInfo
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