pub struct PutMocksMockIdResponseMock {
pub collection: Option<String>,
pub config: Option<PutMocksMockIdResponseMockConfig>,
pub created_at: Option<String>,
pub environment: Option<String>,
pub id: Option<String>,
pub mock_url: Option<String>,
pub name: 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<PutMocksMockIdResponseMockConfig>
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 server’s associated environment ID.
id: Option<String>
The mock server’s ID.
mock_url: Option<String>
The mock server URL.
name: Option<String>
The mock server’s name.
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 PutMocksMockIdResponseMock
impl Clone for PutMocksMockIdResponseMock
Source§fn clone(&self) -> PutMocksMockIdResponseMock
fn clone(&self) -> PutMocksMockIdResponseMock
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 PutMocksMockIdResponseMock
impl Debug for PutMocksMockIdResponseMock
Source§impl<'de> Deserialize<'de> for PutMocksMockIdResponseMock
impl<'de> Deserialize<'de> for PutMocksMockIdResponseMock
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
impl StructuralPartialEq for PutMocksMockIdResponseMock
Auto Trait Implementations§
impl Freeze for PutMocksMockIdResponseMock
impl RefUnwindSafe for PutMocksMockIdResponseMock
impl Send for PutMocksMockIdResponseMock
impl Sync for PutMocksMockIdResponseMock
impl Unpin for PutMocksMockIdResponseMock
impl UnwindSafe for PutMocksMockIdResponseMock
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