pub struct VolcengineConfig {
pub access_key: String,
pub secret_key: String,
pub region: Option<String>,
pub host: Option<String>,
pub scheme: Option<String>,
pub request_timeout: Option<Duration>,
}Fields§
§access_key: String§secret_key: String§region: Option<String>§host: Option<String>§scheme: Option<String>§request_timeout: Option<Duration>Trait Implementations§
Source§impl Clone for VolcengineConfig
impl Clone for VolcengineConfig
Source§fn clone(&self) -> VolcengineConfig
fn clone(&self) -> VolcengineConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VolcengineConfig
impl RefUnwindSafe for VolcengineConfig
impl Send for VolcengineConfig
impl Sync for VolcengineConfig
impl Unpin for VolcengineConfig
impl UnsafeUnpin for VolcengineConfig
impl UnwindSafe for VolcengineConfig
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