pub struct Configuration {
pub base_path: String,
pub api_key: Option<String>,
pub client: Client,
}Expand description
Configuration for the Photon API client.
Fields§
§base_path: String§api_key: Option<String>§client: ClientImplementations§
Source§impl Configuration
impl Configuration
Sourcepub fn new(url: String) -> Self
pub fn new(url: String) -> Self
Create a new configuration from a URL string.
If the URL contains an api-key query parameter, it is extracted
and appended to every request as ?api-key=KEY.
ⓘ
// Without API key
let config = Configuration::new("https://rpc.example.com".to_string());
// With API key
let config = Configuration::new("https://rpc.example.com?api-key=YOUR_KEY".to_string());Trait Implementations§
Source§impl Clone for Configuration
impl Clone for Configuration
Source§fn clone(&self) -> Configuration
fn clone(&self) -> Configuration
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 Configuration
impl Debug for Configuration
Auto Trait Implementations§
impl Freeze for Configuration
impl !RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnsafeUnpin for Configuration
impl !UnwindSafe for Configuration
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