#[non_exhaustive]pub struct ProviderRef {
pub local_name: Arc<str>,
pub alias: Option<Arc<str>>,
pub span: Span,
}Expand description
A resource-side reference to a provider via provider = aws.<alias>.
alias = None means the default aws provider was used.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.local_name: Arc<str>Local name of the provider (e.g. "aws").
alias: Option<Arc<str>>Alias, if the reference had one (e.g. "main").
span: SpanSource span of the provider = ... attribute.
Implementations§
Trait Implementations§
Source§impl Clone for ProviderRef
impl Clone for ProviderRef
Source§fn clone(&self) -> ProviderRef
fn clone(&self) -> ProviderRef
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 moreSource§impl Debug for ProviderRef
impl Debug for ProviderRef
Source§impl<'de> Deserialize<'de> for ProviderRef
impl<'de> Deserialize<'de> for ProviderRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ProviderRef
impl Hash for ProviderRef
Source§impl PartialEq for ProviderRef
impl PartialEq for ProviderRef
Source§fn eq(&self, other: &ProviderRef) -> bool
fn eq(&self, other: &ProviderRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProviderRef
impl Serialize for ProviderRef
impl Eq for ProviderRef
impl StructuralPartialEq for ProviderRef
Auto Trait Implementations§
impl Freeze for ProviderRef
impl RefUnwindSafe for ProviderRef
impl Send for ProviderRef
impl Sync for ProviderRef
impl Unpin for ProviderRef
impl UnsafeUnpin for ProviderRef
impl UnwindSafe for ProviderRef
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.