pub struct PanElementCreated {Show 14 fields
pub added_at: Option<String>,
pub added_by: Option<i64>,
pub created_at: Option<String>,
pub created_by: Option<i64>,
pub description: Option<String>,
pub environments: Option<Vec<String>>,
pub href: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub parent_folder_id: Option<i64>,
pub summary: Option<String>,
pub pan_element_created_type: Option<String>,
pub updated_at: Option<String>,
pub updated_by: Option<i64>,
}
Fields§
§added_at: Option<String>
The date and time at which the element was added.
added_by: Option<i64>
The user who added the element.
created_at: Option<String>
The date and time at which the element was created.
created_by: Option<i64>
The user who created the element.
description: Option<String>
The element’s description.
environments: Option<Vec<String>>
A list of the element’s environments.
href: Option<String>
The element’s Postman URL.
id: Option<String>
The element’s ID or UID.
name: Option<String>
The element’s name.
parent_folder_id: Option<i64>
The parent folder’s ID.
summary: Option<String>
The element’s summary.
pan_element_created_type: Option<String>
The element’s type.
updated_at: Option<String>
The date and time at which the element was last updated.
updated_by: Option<i64>
The user who last updated the element.
Trait Implementations§
Source§impl Clone for PanElementCreated
impl Clone for PanElementCreated
Source§fn clone(&self) -> PanElementCreated
fn clone(&self) -> PanElementCreated
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 PanElementCreated
impl Debug for PanElementCreated
Source§impl<'de> Deserialize<'de> for PanElementCreated
impl<'de> Deserialize<'de> for PanElementCreated
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 PanElementCreated
impl PartialEq for PanElementCreated
Source§impl Serialize for PanElementCreated
impl Serialize for PanElementCreated
impl StructuralPartialEq for PanElementCreated
Auto Trait Implementations§
impl Freeze for PanElementCreated
impl RefUnwindSafe for PanElementCreated
impl Send for PanElementCreated
impl Sync for PanElementCreated
impl Unpin for PanElementCreated
impl UnwindSafe for PanElementCreated
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