pub struct PostApisApiIdSchemasResponse {
pub created_at: Option<String>,
pub created_by: Option<String>,
pub files: Option<Vec<PostApisApiIdSchemasResponseFilesItem>>,
pub id: Option<String>,
pub post_apis_api_id_schemas_response_type: Option<PostApisApiIdSchemasBodyType>,
pub updated_at: Option<String>,
pub updated_by: Option<String>,
}
Fields§
§created_at: Option<String>
The date and time at which the schema was created.
created_by: Option<String>
The user ID of the user that created the schema.
files: Option<Vec<PostApisApiIdSchemasResponseFilesItem>>
The list of the schema’s files.
id: Option<String>
The schema’s ID.
post_apis_api_id_schemas_response_type: Option<PostApisApiIdSchemasBodyType>
The schema’s type.
updated_at: Option<String>
The date and time at which the schema was last updated.
updated_by: Option<String>
The user ID of the user that updated the schema.
Trait Implementations§
Source§impl Clone for PostApisApiIdSchemasResponse
impl Clone for PostApisApiIdSchemasResponse
Source§fn clone(&self) -> PostApisApiIdSchemasResponse
fn clone(&self) -> PostApisApiIdSchemasResponse
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 PostApisApiIdSchemasResponse
impl Debug for PostApisApiIdSchemasResponse
Source§impl<'de> Deserialize<'de> for PostApisApiIdSchemasResponse
impl<'de> Deserialize<'de> for PostApisApiIdSchemasResponse
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 PostApisApiIdSchemasResponse
impl PartialEq for PostApisApiIdSchemasResponse
Source§fn eq(&self, other: &PostApisApiIdSchemasResponse) -> bool
fn eq(&self, other: &PostApisApiIdSchemasResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostApisApiIdSchemasResponse
Auto Trait Implementations§
impl Freeze for PostApisApiIdSchemasResponse
impl RefUnwindSafe for PostApisApiIdSchemasResponse
impl Send for PostApisApiIdSchemasResponse
impl Sync for PostApisApiIdSchemasResponse
impl Unpin for PostApisApiIdSchemasResponse
impl UnwindSafe for PostApisApiIdSchemasResponse
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