pub struct ApiConfig {
pub host: String,
pub port: u16,
pub served_by: String,
pub auth_mode: AuthMode,
pub token: Option<String>,
pub idempotency_ttl_secs: u64,
pub workspace_root: PathBuf,
pub loop_process_interval_ms: u64,
pub ralph_command: String,
}Fields§
§host: String§port: u16§served_by: String§auth_mode: AuthMode§token: Option<String>§idempotency_ttl_secs: u64§workspace_root: PathBuf§loop_process_interval_ms: u64§ralph_command: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApiConfig
impl RefUnwindSafe for ApiConfig
impl Send for ApiConfig
impl Sync for ApiConfig
impl Unpin for ApiConfig
impl UnsafeUnpin for ApiConfig
impl UnwindSafe for ApiConfig
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