pub struct SecretEntryDto {
pub name: String,
pub label: String,
pub kind: String,
pub policy: String,
pub disabled: bool,
}Expand description
DTO for secret entries in list results.
Fields§
§name: String§label: String§kind: String§policy: String§disabled: boolTrait Implementations§
Source§impl Clone for SecretEntryDto
impl Clone for SecretEntryDto
Source§fn clone(&self) -> SecretEntryDto
fn clone(&self) -> SecretEntryDto
Returns a duplicate 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 SecretEntryDto
impl Debug for SecretEntryDto
Source§impl<'de> Deserialize<'de> for SecretEntryDto
impl<'de> Deserialize<'de> for SecretEntryDto
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 SecretEntryDto
impl PartialEq for SecretEntryDto
Source§impl Serialize for SecretEntryDto
impl Serialize for SecretEntryDto
impl StructuralPartialEq for SecretEntryDto
Auto Trait Implementations§
impl Freeze for SecretEntryDto
impl RefUnwindSafe for SecretEntryDto
impl Send for SecretEntryDto
impl Sync for SecretEntryDto
impl Unpin for SecretEntryDto
impl UnsafeUnpin for SecretEntryDto
impl UnwindSafe for SecretEntryDto
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