pub struct GetSecretTypesResponseDataItem {
pub id: Option<String>,
pub name: Option<String>,
pub get_secret_types_response_data_item_type: Option<DatumType>,
}
Fields§
§id: Option<String>
The ID of the secret type.
name: Option<String>
The name of the secret type.
get_secret_types_response_data_item_type: Option<DatumType>
The origin of the secret type:
DEFAULT
— Supported by default in Postman.TEAM_REGEX
— A custom regex added by an Admin or Super Admin user in the Configure Alerts section of the Team Settings interface.
Trait Implementations§
Source§impl Clone for GetSecretTypesResponseDataItem
impl Clone for GetSecretTypesResponseDataItem
Source§fn clone(&self) -> GetSecretTypesResponseDataItem
fn clone(&self) -> GetSecretTypesResponseDataItem
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<'de> Deserialize<'de> for GetSecretTypesResponseDataItem
impl<'de> Deserialize<'de> for GetSecretTypesResponseDataItem
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 GetSecretTypesResponseDataItem
impl PartialEq for GetSecretTypesResponseDataItem
Source§fn eq(&self, other: &GetSecretTypesResponseDataItem) -> bool
fn eq(&self, other: &GetSecretTypesResponseDataItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetSecretTypesResponseDataItem
Auto Trait Implementations§
impl Freeze for GetSecretTypesResponseDataItem
impl RefUnwindSafe for GetSecretTypesResponseDataItem
impl Send for GetSecretTypesResponseDataItem
impl Sync for GetSecretTypesResponseDataItem
impl Unpin for GetSecretTypesResponseDataItem
impl UnwindSafe for GetSecretTypesResponseDataItem
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