pub struct LambdaSettings {
pub api_key: Option<String>,
pub endpoint: Option<String>,
pub image_repository: Option<String>,
pub ssh_key_name: Option<String>,
pub ssh_private_key_path: Option<String>,
pub filesystem_prefix: Option<String>,
pub filesystem_mount_path: String,
pub confirm_hourly_usd: f64,
pub local_port: u16,
}Fields§
§api_key: Option<String>§endpoint: Option<String>§image_repository: Option<String>§ssh_key_name: Option<String>§ssh_private_key_path: Option<String>§filesystem_prefix: Option<String>§filesystem_mount_path: String§confirm_hourly_usd: f64§local_port: u16Implementations§
Source§impl LambdaSettings
impl LambdaSettings
pub fn resolved_api_key(&self) -> Option<String>
pub fn endpoint(&self) -> &str
pub fn image_repository(&self) -> &str
pub fn redacted_debug(&self) -> String
Trait Implementations§
Source§impl Clone for LambdaSettings
impl Clone for LambdaSettings
Source§fn clone(&self) -> LambdaSettings
fn clone(&self) -> LambdaSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LambdaSettings
impl Debug for LambdaSettings
Source§impl Default for LambdaSettings
impl Default for LambdaSettings
Source§impl<'de> Deserialize<'de> for LambdaSettings
impl<'de> Deserialize<'de> for LambdaSettings
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 LambdaSettings
impl RefUnwindSafe for LambdaSettings
impl Send for LambdaSettings
impl Sync for LambdaSettings
impl Unpin for LambdaSettings
impl UnsafeUnpin for LambdaSettings
impl UnwindSafe for LambdaSettings
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