#[non_exhaustive]pub struct DriverSchedulingConfig {
pub memory_mb: i32,
pub vcores: i32,
/* private fields */
}Expand description
Driver scheduling configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.memory_mb: i32Required. The amount of memory in MB the driver is requesting.
vcores: i32Required. The number of vCPUs the driver is requesting.
Implementations§
Trait Implementations§
Source§impl Clone for DriverSchedulingConfig
impl Clone for DriverSchedulingConfig
Source§fn clone(&self) -> DriverSchedulingConfig
fn clone(&self) -> DriverSchedulingConfig
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 DriverSchedulingConfig
impl Debug for DriverSchedulingConfig
Source§impl Default for DriverSchedulingConfig
impl Default for DriverSchedulingConfig
Source§fn default() -> DriverSchedulingConfig
fn default() -> DriverSchedulingConfig
Returns the “default value” for a type. Read more
Source§impl Message for DriverSchedulingConfig
impl Message for DriverSchedulingConfig
Source§impl PartialEq for DriverSchedulingConfig
impl PartialEq for DriverSchedulingConfig
impl StructuralPartialEq for DriverSchedulingConfig
Auto Trait Implementations§
impl Freeze for DriverSchedulingConfig
impl RefUnwindSafe for DriverSchedulingConfig
impl Send for DriverSchedulingConfig
impl Sync for DriverSchedulingConfig
impl Unpin for DriverSchedulingConfig
impl UnwindSafe for DriverSchedulingConfig
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