pub struct GetApisResponseApisItem {
pub created_at: Option<String>,
pub created_by: Option<f64>,
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub summary: Option<String>,
pub updated_at: Option<String>,
pub updated_by: Option<f64>,
}
Fields§
§created_at: Option<String>
The date and time at which the API was created.
created_by: Option<f64>
The Postman ID of the user that created the API.
description: Option<String>
The API’s description.
id: Option<String>
The API’s ID.
name: Option<String>
The API’s name.
summary: Option<String>
The API’s short summary.
updated_at: Option<String>
The date and time at which the API was updated.
updated_by: Option<f64>
The Postman ID of the user that updated the API.
Trait Implementations§
Source§impl Clone for GetApisResponseApisItem
impl Clone for GetApisResponseApisItem
Source§fn clone(&self) -> GetApisResponseApisItem
fn clone(&self) -> GetApisResponseApisItem
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 GetApisResponseApisItem
impl Debug for GetApisResponseApisItem
Source§impl<'de> Deserialize<'de> for GetApisResponseApisItem
impl<'de> Deserialize<'de> for GetApisResponseApisItem
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 GetApisResponseApisItem
impl PartialEq for GetApisResponseApisItem
Source§impl Serialize for GetApisResponseApisItem
impl Serialize for GetApisResponseApisItem
impl StructuralPartialEq for GetApisResponseApisItem
Auto Trait Implementations§
impl Freeze for GetApisResponseApisItem
impl RefUnwindSafe for GetApisResponseApisItem
impl Send for GetApisResponseApisItem
impl Sync for GetApisResponseApisItem
impl Unpin for GetApisResponseApisItem
impl UnwindSafe for GetApisResponseApisItem
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