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
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SchemasSnippetResponseCommon
Auto Trait Implementations§
impl Freeze for SchemasSnippetResponseCommon
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