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