pub struct PackageDownloadConfig {
pub registry_url: String,
pub auth_token: Option<String>,
pub timeout_seconds: u64,
pub max_retries: u32,
pub verify_checksums: bool,
pub overwrite_existing: bool,
}Expand description
Configuration for package loading operations
Fields§
§registry_url: StringRegistry URL (defaults to https://packages.fhir.org)
auth_token: Option<String>Optional authentication token
timeout_seconds: u64HTTP client timeout in seconds
max_retries: u32Maximum number of retry attempts
verify_checksums: boolWhether to verify checksums when available
overwrite_existing: boolWhether to overwrite existing packages (defaults to false)
Trait Implementations§
Source§impl Clone for LoaderConfig
impl Clone for LoaderConfig
Source§fn clone(&self) -> LoaderConfig
fn clone(&self) -> LoaderConfig
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 LoaderConfig
impl Debug for LoaderConfig
Source§impl Default for LoaderConfig
impl Default for LoaderConfig
Source§fn default() -> LoaderConfig
fn default() -> LoaderConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoaderConfig
impl RefUnwindSafe for LoaderConfig
impl Send for LoaderConfig
impl Sync for LoaderConfig
impl Unpin for LoaderConfig
impl UnsafeUnpin for LoaderConfig
impl UnwindSafe for LoaderConfig
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