pub struct JobStatistics2ReservationUsage {
pub name: Option<String>,
pub slot_ms: Option<i64>,
}Expand description
Job resource usage breakdown by reservation.
This type is not used in any activity, and only used as part of another schema.
Fields§
§name: Option<String>Reservation name or “unreserved” for on-demand resource usage and multi-statement queries.
slot_ms: Option<i64>Total slot milliseconds used by the reservation for a particular job.
Trait Implementations§
Source§impl Clone for JobStatistics2ReservationUsage
impl Clone for JobStatistics2ReservationUsage
Source§fn clone(&self) -> JobStatistics2ReservationUsage
fn clone(&self) -> JobStatistics2ReservationUsage
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 Default for JobStatistics2ReservationUsage
impl Default for JobStatistics2ReservationUsage
Source§fn default() -> JobStatistics2ReservationUsage
fn default() -> JobStatistics2ReservationUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobStatistics2ReservationUsage
impl<'de> Deserialize<'de> for JobStatistics2ReservationUsage
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 NestedType for JobStatistics2ReservationUsage
impl Part for JobStatistics2ReservationUsage
Auto Trait Implementations§
impl Freeze for JobStatistics2ReservationUsage
impl RefUnwindSafe for JobStatistics2ReservationUsage
impl Send for JobStatistics2ReservationUsage
impl Sync for JobStatistics2ReservationUsage
impl Unpin for JobStatistics2ReservationUsage
impl UnwindSafe for JobStatistics2ReservationUsage
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