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