pub struct LaunchRequestInput<'a> {
pub region_name: &'a str,
pub instance_type_name: &'a str,
pub ssh_key_name: &'a str,
pub filesystem_name: &'a str,
pub filesystem_id: Option<&'a str>,
pub filesystem_mount_path: &'a str,
pub instance_name: &'a str,
pub image_id: Option<&'a str>,
pub user_data: &'a str,
}Fields§
§region_name: &'a str§instance_type_name: &'a str§ssh_key_name: &'a str§filesystem_name: &'a str§filesystem_id: Option<&'a str>§filesystem_mount_path: &'a str§instance_name: &'a str§image_id: Option<&'a str>§user_data: &'a strAuto Trait Implementations§
impl<'a> Freeze for LaunchRequestInput<'a>
impl<'a> RefUnwindSafe for LaunchRequestInput<'a>
impl<'a> Send for LaunchRequestInput<'a>
impl<'a> Sync for LaunchRequestInput<'a>
impl<'a> Unpin for LaunchRequestInput<'a>
impl<'a> UnsafeUnpin for LaunchRequestInput<'a>
impl<'a> UnwindSafe for LaunchRequestInput<'a>
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