pub struct OracleCloudConfig {
pub tenancy_ocid: String,
pub user_ocid: String,
pub fingerprint: String,
pub private_key_pem: String,
pub private_key_password: Option<String>,
pub region: String,
pub compartment_ocid: String,
pub request_timeout: Option<Duration>,
}Fields§
§tenancy_ocid: String§user_ocid: String§fingerprint: String§private_key_pem: String§private_key_password: Option<String>§region: String§compartment_ocid: String§request_timeout: Option<Duration>Trait Implementations§
Source§impl Clone for OracleCloudConfig
impl Clone for OracleCloudConfig
Source§fn clone(&self) -> OracleCloudConfig
fn clone(&self) -> OracleCloudConfig
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 OracleCloudConfig
impl RefUnwindSafe for OracleCloudConfig
impl Send for OracleCloudConfig
impl Sync for OracleCloudConfig
impl Unpin for OracleCloudConfig
impl UnsafeUnpin for OracleCloudConfig
impl UnwindSafe for OracleCloudConfig
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