pub struct Faster100xConfig {
pub api_key: String,
pub base_url: String,
pub rate_limit_per_minute: u32,
}Expand description
Faster100x API configuration
Fields§
§api_key: StringAPI key for authentication with Faster100x service
base_url: StringAPI base URL (default: https://api.faster100x.com/v1)
rate_limit_per_minute: u32Rate limit per minute (default: 100)
Trait Implementations§
Source§impl Clone for Faster100xConfig
impl Clone for Faster100xConfig
Source§fn clone(&self) -> Faster100xConfig
fn clone(&self) -> Faster100xConfig
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 Faster100xConfig
impl Debug for Faster100xConfig
Auto Trait Implementations§
impl Freeze for Faster100xConfig
impl RefUnwindSafe for Faster100xConfig
impl Send for Faster100xConfig
impl Sync for Faster100xConfig
impl Unpin for Faster100xConfig
impl UnwindSafe for Faster100xConfig
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