pub struct MemorySetPassphraseAction {
pub region_id: Option<String>,
pub passphrase: Option<String>,
}Expand description
Set passphrase for the given regions.
This action shall apply the supplied passphrase to the supplied region.
Fields§
§region_id: Option<String>The memory region ID to which to apply this action.
This property shall contain the memory region ID to which to apply this action.
passphrase: Option<String>Passphrase for doing the operation.
This property shall contain the passphrase used in this action.
Trait Implementations§
Source§impl Debug for MemorySetPassphraseAction
impl Debug for MemorySetPassphraseAction
Auto Trait Implementations§
impl Freeze for MemorySetPassphraseAction
impl RefUnwindSafe for MemorySetPassphraseAction
impl Send for MemorySetPassphraseAction
impl Sync for MemorySetPassphraseAction
impl Unpin for MemorySetPassphraseAction
impl UnsafeUnpin for MemorySetPassphraseAction
impl UnwindSafe for MemorySetPassphraseAction
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