Struct forgejo_api::structs::CreateOrUpdateSecretOption
source · pub struct CreateOrUpdateSecretOption {
pub data: String,
}Expand description
CreateOrUpdateSecretOption options when creating or updating secret
Fields§
§data: StringData of the secret to update
Trait Implementations§
source§impl Clone for CreateOrUpdateSecretOption
impl Clone for CreateOrUpdateSecretOption
source§fn clone(&self) -> CreateOrUpdateSecretOption
fn clone(&self) -> CreateOrUpdateSecretOption
Returns a copy of the value. Read more
1.0.0 · 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 CreateOrUpdateSecretOption
impl Debug for CreateOrUpdateSecretOption
source§impl<'de> Deserialize<'de> for CreateOrUpdateSecretOption
impl<'de> Deserialize<'de> for CreateOrUpdateSecretOption
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 CreateOrUpdateSecretOption
impl PartialEq for CreateOrUpdateSecretOption
source§fn eq(&self, other: &CreateOrUpdateSecretOption) -> bool
fn eq(&self, other: &CreateOrUpdateSecretOption) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateOrUpdateSecretOption
Auto Trait Implementations§
impl Freeze for CreateOrUpdateSecretOption
impl RefUnwindSafe for CreateOrUpdateSecretOption
impl Send for CreateOrUpdateSecretOption
impl Sync for CreateOrUpdateSecretOption
impl Unpin for CreateOrUpdateSecretOption
impl UnwindSafe for CreateOrUpdateSecretOption
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