pub struct UsageFileSearchCallsResult {
pub num_requests: i64,
pub project_id: Option<String>,
pub user_id: Option<String>,
pub api_key_id: Option<String>,
pub vector_store_id: Option<String>,
}Available on crate feature
administration-types only.Expand description
The aggregated file search calls usage details of the specific time bucket.
Fields§
§num_requests: i64The count of file search calls.
project_id: Option<String>§user_id: Option<String>§api_key_id: Option<String>§vector_store_id: Option<String>Trait Implementations§
Source§impl Clone for UsageFileSearchCallsResult
impl Clone for UsageFileSearchCallsResult
Source§fn clone(&self) -> UsageFileSearchCallsResult
fn clone(&self) -> UsageFileSearchCallsResult
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 UsageFileSearchCallsResult
impl Debug for UsageFileSearchCallsResult
Source§impl<'de> Deserialize<'de> for UsageFileSearchCallsResult
impl<'de> Deserialize<'de> for UsageFileSearchCallsResult
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
impl StructuralPartialEq for UsageFileSearchCallsResult
Auto Trait Implementations§
impl Freeze for UsageFileSearchCallsResult
impl RefUnwindSafe for UsageFileSearchCallsResult
impl Send for UsageFileSearchCallsResult
impl Sync for UsageFileSearchCallsResult
impl Unpin for UsageFileSearchCallsResult
impl UnsafeUnpin for UsageFileSearchCallsResult
impl UnwindSafe for UsageFileSearchCallsResult
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