#[non_exhaustive]pub struct Statefile {
pub signed_uri: String,
/* private fields */
}Expand description
Contains info about a Terraform state file
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.signed_uri: StringOutput only. Cloud Storage signed URI used for downloading or uploading the state file.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Statefile
Auto Trait Implementations§
impl Freeze for Statefile
impl RefUnwindSafe for Statefile
impl Send for Statefile
impl Sync for Statefile
impl Unpin for Statefile
impl UnsafeUnpin for Statefile
impl UnwindSafe for Statefile
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