pub struct UpdateSecretNoteRequest {
pub secret: String,
pub note: String,
}Expand description
UpdateSecretNoteRequest
Fields§
§secret: StringThe name of the secret
note: StringThe note you want to set on the secret. This note will be applied to the specified secret in all environments.
Implementations§
Source§impl UpdateSecretNoteRequest
impl UpdateSecretNoteRequest
pub fn new(secret: String, note: String) -> UpdateSecretNoteRequest
Trait Implementations§
Source§impl Clone for UpdateSecretNoteRequest
impl Clone for UpdateSecretNoteRequest
Source§fn clone(&self) -> UpdateSecretNoteRequest
fn clone(&self) -> UpdateSecretNoteRequest
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 UpdateSecretNoteRequest
impl Debug for UpdateSecretNoteRequest
Source§impl Default for UpdateSecretNoteRequest
impl Default for UpdateSecretNoteRequest
Source§fn default() -> UpdateSecretNoteRequest
fn default() -> UpdateSecretNoteRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSecretNoteRequest
impl<'de> Deserialize<'de> for UpdateSecretNoteRequest
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 PartialEq for UpdateSecretNoteRequest
impl PartialEq for UpdateSecretNoteRequest
Source§impl Serialize for UpdateSecretNoteRequest
impl Serialize for UpdateSecretNoteRequest
impl StructuralPartialEq for UpdateSecretNoteRequest
Auto Trait Implementations§
impl Freeze for UpdateSecretNoteRequest
impl RefUnwindSafe for UpdateSecretNoteRequest
impl Send for UpdateSecretNoteRequest
impl Sync for UpdateSecretNoteRequest
impl Unpin for UpdateSecretNoteRequest
impl UnsafeUnpin for UpdateSecretNoteRequest
impl UnwindSafe for UpdateSecretNoteRequest
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