pub struct ProviderFormBaseline {Show 13 fields
pub url: String,
pub token: String,
pub profile: String,
pub project: String,
pub compartment: String,
pub regions: String,
pub alias_prefix: String,
pub user: String,
pub identity_file: String,
pub verify_tls: bool,
pub auto_sync: bool,
pub vault_role: String,
pub vault_addr: String,
}Expand description
Baseline snapshot of provider form content for dirty-check on Esc.
Fields§
§url: String§token: String§profile: String§project: String§compartment: String§regions: String§alias_prefix: String§user: String§identity_file: String§verify_tls: bool§auto_sync: bool§vault_role: String§vault_addr: StringTrait Implementations§
Source§impl Clone for ProviderFormBaseline
impl Clone for ProviderFormBaseline
Source§fn clone(&self) -> ProviderFormBaseline
fn clone(&self) -> ProviderFormBaseline
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 ProviderFormBaseline
impl RefUnwindSafe for ProviderFormBaseline
impl Send for ProviderFormBaseline
impl Sync for ProviderFormBaseline
impl Unpin for ProviderFormBaseline
impl UnsafeUnpin for ProviderFormBaseline
impl UnwindSafe for ProviderFormBaseline
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more