pub struct GetNetworkPrivateResponseElementsItem {Show 13 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 href: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub parent_folder_id: Option<i64>,
pub summary: Option<String>,
pub get_network_private_response_elements_item_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 published to Private API Network. This value
is the same as the updatedAt
value.
added_by: Option<i64>
The user ID of the user who published 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.
href: Option<String>
The element’s HREF.
id: Option<String>
The element’s ID.
name: Option<String>
The element’s name.
parent_folder_id: Option<i64>
The element’s parent folder ID.
summary: Option<String>
The element’s summary.
get_network_private_response_elements_item_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 updated the element.
Trait Implementations§
Source§impl Clone for GetNetworkPrivateResponseElementsItem
impl Clone for GetNetworkPrivateResponseElementsItem
Source§fn clone(&self) -> GetNetworkPrivateResponseElementsItem
fn clone(&self) -> GetNetworkPrivateResponseElementsItem
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<'de> Deserialize<'de> for GetNetworkPrivateResponseElementsItem
impl<'de> Deserialize<'de> for GetNetworkPrivateResponseElementsItem
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 GetNetworkPrivateResponseElementsItem
impl PartialEq for GetNetworkPrivateResponseElementsItem
Source§fn eq(&self, other: &GetNetworkPrivateResponseElementsItem) -> bool
fn eq(&self, other: &GetNetworkPrivateResponseElementsItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetNetworkPrivateResponseElementsItem
Auto Trait Implementations§
impl Freeze for GetNetworkPrivateResponseElementsItem
impl RefUnwindSafe for GetNetworkPrivateResponseElementsItem
impl Send for GetNetworkPrivateResponseElementsItem
impl Sync for GetNetworkPrivateResponseElementsItem
impl Unpin for GetNetworkPrivateResponseElementsItem
impl UnwindSafe for GetNetworkPrivateResponseElementsItem
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