pub struct AdapterOptions {
pub host: String,
pub port: String,
pub readiness_check_port: String,
pub readiness_check_path: String,
pub readiness_check_protocol: Protocol,
pub readiness_check_min_unhealthy_status: u16,
pub base_path: Option<String>,
pub pass_through_path: String,
pub async_init: bool,
pub compression: bool,
pub invoke_mode: LambdaInvokeMode,
}Fields§
§host: String§port: String§readiness_check_port: String§readiness_check_path: String§readiness_check_protocol: Protocol§readiness_check_min_unhealthy_status: u16§base_path: Option<String>§pass_through_path: String§async_init: bool§compression: bool§invoke_mode: LambdaInvokeModeTrait Implementations§
Auto Trait Implementations§
impl Freeze for AdapterOptions
impl RefUnwindSafe for AdapterOptions
impl Send for AdapterOptions
impl Sync for AdapterOptions
impl Unpin for AdapterOptions
impl UnwindSafe for AdapterOptions
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