pub struct OrganizationSecretsListResponse {
pub data: Vec<OrganizationSecretView>,
}Expand description
Response returned when listing organization secrets for an account.
JSON schema
{
"title": "OrganizationSecretsListResponse",
"description": "Response returned when listing organization secrets for
an account.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationSecretView"
}
}
},
"x-stainless-model": "organizations.organization_secrets_list_response"
}Fields§
§data: Vec<OrganizationSecretView>Trait Implementations§
Source§impl Clone for OrganizationSecretsListResponse
impl Clone for OrganizationSecretsListResponse
Source§fn clone(&self) -> OrganizationSecretsListResponse
fn clone(&self) -> OrganizationSecretsListResponse
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<'de> Deserialize<'de> for OrganizationSecretsListResponse
impl<'de> Deserialize<'de> for OrganizationSecretsListResponse
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 From<&OrganizationSecretsListResponse> for OrganizationSecretsListResponse
impl From<&OrganizationSecretsListResponse> for OrganizationSecretsListResponse
Source§fn from(value: &OrganizationSecretsListResponse) -> Self
fn from(value: &OrganizationSecretsListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrganizationSecretsListResponse
impl RefUnwindSafe for OrganizationSecretsListResponse
impl Send for OrganizationSecretsListResponse
impl Sync for OrganizationSecretsListResponse
impl Unpin for OrganizationSecretsListResponse
impl UnsafeUnpin for OrganizationSecretsListResponse
impl UnwindSafe for OrganizationSecretsListResponse
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