pub struct SkypilotFleetConfig {
pub cloud: String,
pub region: Option<String>,
pub instance_type: Option<String>,
}Expand description
SkyPilot fleet configuration.
Fields§
§cloud: StringDefault cloud provider.
region: Option<String>Default region.
instance_type: Option<String>Default instance type.
Trait Implementations§
Source§impl Clone for SkypilotFleetConfig
impl Clone for SkypilotFleetConfig
Source§fn clone(&self) -> SkypilotFleetConfig
fn clone(&self) -> SkypilotFleetConfig
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 SkypilotFleetConfig
impl Debug for SkypilotFleetConfig
Source§impl<'de> Deserialize<'de> for SkypilotFleetConfig
impl<'de> Deserialize<'de> for SkypilotFleetConfig
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
Auto Trait Implementations§
impl Freeze for SkypilotFleetConfig
impl RefUnwindSafe for SkypilotFleetConfig
impl Send for SkypilotFleetConfig
impl Sync for SkypilotFleetConfig
impl Unpin for SkypilotFleetConfig
impl UnsafeUnpin for SkypilotFleetConfig
impl UnwindSafe for SkypilotFleetConfig
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