pub struct PostApisApiIdSchemasBodyFilesItem {
pub content: Option<String>,
pub path: Option<String>,
pub root: Option<PostApisApiIdSchemasBodyFilesItemRoot>,
}
Fields§
§content: Option<String>
The schema file’s stringified contents.
path: Option<String>
The schema’s file path.
root: Option<PostApisApiIdSchemasBodyFilesItemRoot>
Information about the schema’s root file.
Trait Implementations§
Source§impl Clone for PostApisApiIdSchemasBodyFilesItem
impl Clone for PostApisApiIdSchemasBodyFilesItem
Source§fn clone(&self) -> PostApisApiIdSchemasBodyFilesItem
fn clone(&self) -> PostApisApiIdSchemasBodyFilesItem
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 PostApisApiIdSchemasBodyFilesItem
impl<'de> Deserialize<'de> for PostApisApiIdSchemasBodyFilesItem
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 PostApisApiIdSchemasBodyFilesItem
impl PartialEq for PostApisApiIdSchemasBodyFilesItem
Source§fn eq(&self, other: &PostApisApiIdSchemasBodyFilesItem) -> bool
fn eq(&self, other: &PostApisApiIdSchemasBodyFilesItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostApisApiIdSchemasBodyFilesItem
Auto Trait Implementations§
impl Freeze for PostApisApiIdSchemasBodyFilesItem
impl RefUnwindSafe for PostApisApiIdSchemasBodyFilesItem
impl Send for PostApisApiIdSchemasBodyFilesItem
impl Sync for PostApisApiIdSchemasBodyFilesItem
impl Unpin for PostApisApiIdSchemasBodyFilesItem
impl UnwindSafe for PostApisApiIdSchemasBodyFilesItem
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