pub struct GetMocksResponseMocksItem {
pub collection: Option<String>,
pub config: Option<GetMocksResponseMocksItemConfig>,
pub created_at: Option<String>,
pub environment: Option<String>,
pub id: Option<String>,
pub is_public: Option<bool>,
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<GetMocksResponseMocksItemConfig>
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.
is_public: Option<bool>
If true, the mock server is public.
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 GetMocksResponseMocksItem
impl Clone for GetMocksResponseMocksItem
Source§fn clone(&self) -> GetMocksResponseMocksItem
fn clone(&self) -> GetMocksResponseMocksItem
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 GetMocksResponseMocksItem
impl Debug for GetMocksResponseMocksItem
Source§impl<'de> Deserialize<'de> for GetMocksResponseMocksItem
impl<'de> Deserialize<'de> for GetMocksResponseMocksItem
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 GetMocksResponseMocksItem
Auto Trait Implementations§
impl Freeze for GetMocksResponseMocksItem
impl RefUnwindSafe for GetMocksResponseMocksItem
impl Send for GetMocksResponseMocksItem
impl Sync for GetMocksResponseMocksItem
impl Unpin for GetMocksResponseMocksItem
impl UnwindSafe for GetMocksResponseMocksItem
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