pub struct AllocateInfo {
pub unused_arguments: Option<Vec<String>>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§unused_arguments: Option<Vec<String>>A list of label keys that were unused by the server in processing the request. Thus, for similar requests repeated in a certain future time window, the caller can choose to ignore these labels in the requests to achieve better client-side cache hits and quota aggregation for rate quota. This field is not populated for allocation quota checks.
Trait Implementations§
Source§impl Clone for AllocateInfo
impl Clone for AllocateInfo
Source§fn clone(&self) -> AllocateInfo
fn clone(&self) -> AllocateInfo
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 moreSource§impl Debug for AllocateInfo
impl Debug for AllocateInfo
Source§impl Default for AllocateInfo
impl Default for AllocateInfo
Source§fn default() -> AllocateInfo
fn default() -> AllocateInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllocateInfo
impl<'de> Deserialize<'de> for AllocateInfo
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 Serialize for AllocateInfo
impl Serialize for AllocateInfo
impl Part for AllocateInfo
Auto Trait Implementations§
impl Freeze for AllocateInfo
impl RefUnwindSafe for AllocateInfo
impl Send for AllocateInfo
impl Sync for AllocateInfo
impl Unpin for AllocateInfo
impl UnwindSafe for AllocateInfo
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