pub struct SecretsGroup {
pub id: Option<Uuid>,
pub object_type: Option<String>,
pub display: Option<String>,
pub url: Option<String>,
pub natural_slug: Option<String>,
pub name: String,
pub description: Option<String>,
pub created: Option<Option<String>>,
pub last_updated: Option<Option<String>>,
pub notes_url: Option<String>,
pub custom_fields: Option<HashMap<String, Value>>,
}Expand description
SecretsGroup : Serializer for SecretsGroup objects.
Fields§
§id: Option<Uuid>§object_type: Option<String>§display: Option<String>Human friendly display value
url: Option<String>§natural_slug: Option<String>§name: String§description: Option<String>§created: Option<Option<String>>§last_updated: Option<Option<String>>§notes_url: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl SecretsGroup
impl SecretsGroup
Sourcepub fn new(name: String) -> SecretsGroup
pub fn new(name: String) -> SecretsGroup
Serializer for SecretsGroup objects.
Trait Implementations§
Source§impl Clone for SecretsGroup
impl Clone for SecretsGroup
Source§fn clone(&self) -> SecretsGroup
fn clone(&self) -> SecretsGroup
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 SecretsGroup
impl Debug for SecretsGroup
Source§impl Default for SecretsGroup
impl Default for SecretsGroup
Source§fn default() -> SecretsGroup
fn default() -> SecretsGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretsGroup
impl<'de> Deserialize<'de> for SecretsGroup
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 SecretsGroup
impl PartialEq for SecretsGroup
Source§impl Serialize for SecretsGroup
impl Serialize for SecretsGroup
impl StructuralPartialEq for SecretsGroup
Auto Trait Implementations§
impl Freeze for SecretsGroup
impl RefUnwindSafe for SecretsGroup
impl Send for SecretsGroup
impl Sync for SecretsGroup
impl Unpin for SecretsGroup
impl UnsafeUnpin for SecretsGroup
impl UnwindSafe for SecretsGroup
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