pub struct PostMocksResponseMock {
pub collection: Option<String>,
pub config: Option<PostMocksResponseMockConfig>,
pub created_at: Option<String>,
pub environment: Option<String>,
pub id: Option<String>,
pub mock_url: Option<String>,
pub owner: Option<String>,
pub uid: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§collection: Option<String>
The mock’s associated collection unique ID.
config: Option<PostMocksResponseMockConfig>
Information about the mock server’s configuration.
created_at: Option<String>
The date and time at which the mock server was created.
environment: Option<String>
The mock’s associated environment unique ID.
id: Option<String>
The mock server’s ID.
mock_url: Option<String>
The mock server URL.
owner: Option<String>
The ID of mock server’s owner.
uid: Option<String>
The mock server’s unique ID.
updated_at: Option<String>
The date and time at which the mock server was last updated.
Trait Implementations§
Source§impl Clone for PostMocksResponseMock
impl Clone for PostMocksResponseMock
Source§fn clone(&self) -> PostMocksResponseMock
fn clone(&self) -> PostMocksResponseMock
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 Debug for PostMocksResponseMock
impl Debug for PostMocksResponseMock
Source§impl<'de> Deserialize<'de> for PostMocksResponseMock
impl<'de> Deserialize<'de> for PostMocksResponseMock
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 PostMocksResponseMock
impl PartialEq for PostMocksResponseMock
Source§impl Serialize for PostMocksResponseMock
impl Serialize for PostMocksResponseMock
impl StructuralPartialEq for PostMocksResponseMock
Auto Trait Implementations§
impl Freeze for PostMocksResponseMock
impl RefUnwindSafe for PostMocksResponseMock
impl Send for PostMocksResponseMock
impl Sync for PostMocksResponseMock
impl Unpin for PostMocksResponseMock
impl UnwindSafe for PostMocksResponseMock
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