pub struct ProvisioningApiConfig {
pub project_id: u32,
pub region_id: u32,
pub registry_id: u32,
pub access_token: String,
}
Expand description
Project identification.
Fields§
§project_id: u32
Project id on the Hub.
region_id: u32
Region id on the Hub.
registry_id: u32
Registry id on the Hub.
access_token: String
Access token.
Trait Implementations§
Source§impl Clone for ProvisioningApiConfig
impl Clone for ProvisioningApiConfig
Source§fn clone(&self) -> ProvisioningApiConfig
fn clone(&self) -> ProvisioningApiConfig
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 moreAuto Trait Implementations§
impl Freeze for ProvisioningApiConfig
impl RefUnwindSafe for ProvisioningApiConfig
impl Send for ProvisioningApiConfig
impl Sync for ProvisioningApiConfig
impl Unpin for ProvisioningApiConfig
impl UnwindSafe for ProvisioningApiConfig
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