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