pub struct PostApisResponse {
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 PostApisResponse
impl Clone for PostApisResponse
Source§fn clone(&self) -> PostApisResponse
fn clone(&self) -> PostApisResponse
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 PostApisResponse
impl Debug for PostApisResponse
Source§impl<'de> Deserialize<'de> for PostApisResponse
impl<'de> Deserialize<'de> for PostApisResponse
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 PostApisResponse
impl PartialEq for PostApisResponse
Source§impl Serialize for PostApisResponse
impl Serialize for PostApisResponse
impl StructuralPartialEq for PostApisResponse
Auto Trait Implementations§
impl Freeze for PostApisResponse
impl RefUnwindSafe for PostApisResponse
impl Send for PostApisResponse
impl Sync for PostApisResponse
impl Unpin for PostApisResponse
impl UnwindSafe for PostApisResponse
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