pub struct SchemasSnippetResponseCommon {
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub service_id: Option<Box<String>>,
pub version: Option<String>,
pub id: Option<Box<String>>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
service_id: Option<Box<String>>
§version: Option<String>
String representing the number identifying a version of the service.
id: Option<Box<String>>
Implementations§
source§impl SchemasSnippetResponseCommon
impl SchemasSnippetResponseCommon
pub fn new() -> SchemasSnippetResponseCommon
Trait Implementations§
source§impl Clone for SchemasSnippetResponseCommon
impl Clone for SchemasSnippetResponseCommon
source§fn clone(&self) -> SchemasSnippetResponseCommon
fn clone(&self) -> SchemasSnippetResponseCommon
Returns a copy 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 SchemasSnippetResponseCommon
impl Debug for SchemasSnippetResponseCommon
source§impl Default for SchemasSnippetResponseCommon
impl Default for SchemasSnippetResponseCommon
source§fn default() -> SchemasSnippetResponseCommon
fn default() -> SchemasSnippetResponseCommon
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SchemasSnippetResponseCommon
impl<'de> Deserialize<'de> for SchemasSnippetResponseCommon
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 SchemasSnippetResponseCommon
impl PartialEq for SchemasSnippetResponseCommon
source§fn eq(&self, other: &SchemasSnippetResponseCommon) -> bool
fn eq(&self, other: &SchemasSnippetResponseCommon) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SchemasSnippetResponseCommon
Auto Trait Implementations§
impl RefUnwindSafe for SchemasSnippetResponseCommon
impl Send for SchemasSnippetResponseCommon
impl Sync for SchemasSnippetResponseCommon
impl Unpin for SchemasSnippetResponseCommon
impl UnwindSafe for SchemasSnippetResponseCommon
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