pub struct ApiBase {
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<'de> Deserialize<'de> for ApiBase
impl<'de> Deserialize<'de> for ApiBase
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 ApiBase
Auto Trait Implementations§
impl Freeze for ApiBase
impl RefUnwindSafe for ApiBase
impl Send for ApiBase
impl Sync for ApiBase
impl Unpin for ApiBase
impl UnwindSafe for ApiBase
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