pub struct SnippetResponseCommon {
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 SnippetResponseCommon
impl SnippetResponseCommon
pub fn new() -> SnippetResponseCommon
Trait Implementations§
Source§impl Clone for SnippetResponseCommon
impl Clone for SnippetResponseCommon
Source§fn clone(&self) -> SnippetResponseCommon
fn clone(&self) -> SnippetResponseCommon
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 SnippetResponseCommon
impl Debug for SnippetResponseCommon
Source§impl Default for SnippetResponseCommon
impl Default for SnippetResponseCommon
Source§fn default() -> SnippetResponseCommon
fn default() -> SnippetResponseCommon
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SnippetResponseCommon
impl<'de> Deserialize<'de> for SnippetResponseCommon
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 SnippetResponseCommon
impl PartialEq for SnippetResponseCommon
Source§impl Serialize for SnippetResponseCommon
impl Serialize for SnippetResponseCommon
impl StructuralPartialEq for SnippetResponseCommon
Auto Trait Implementations§
impl Freeze for SnippetResponseCommon
impl RefUnwindSafe for SnippetResponseCommon
impl Send for SnippetResponseCommon
impl Sync for SnippetResponseCommon
impl Unpin for SnippetResponseCommon
impl UnwindSafe for SnippetResponseCommon
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