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