pub struct GetNetworkPrivateResponseFoldersItem {
pub created_at: Option<String>,
pub created_by: Option<i64>,
pub description: Option<String>,
pub id: Option<i64>,
pub name: Option<String>,
pub parent_folder_id: Option<i64>,
pub get_network_private_response_folders_item_type: Option<String>,
pub updated_at: Option<String>,
pub updated_by: Option<i64>,
}
Fields§
§created_at: Option<String>
The date and time at which the folder was created.
created_by: Option<i64>
The user who created the folder.
description: Option<String>
The folder’s description.
id: Option<i64>
The folder’s ID.
name: Option<String>
The folder’s name.
parent_folder_id: Option<i64>
The folder’s parent folder ID.
get_network_private_response_folders_item_type: Option<String>
The element’s type. This value is always folder
.
updated_at: Option<String>
The date and time at which the folder was updated.
updated_by: Option<i64>
The user ID of the user who updated the folder.
Trait Implementations§
Source§impl Clone for GetNetworkPrivateResponseFoldersItem
impl Clone for GetNetworkPrivateResponseFoldersItem
Source§fn clone(&self) -> GetNetworkPrivateResponseFoldersItem
fn clone(&self) -> GetNetworkPrivateResponseFoldersItem
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 GetNetworkPrivateResponseFoldersItem
impl<'de> Deserialize<'de> for GetNetworkPrivateResponseFoldersItem
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 GetNetworkPrivateResponseFoldersItem
impl PartialEq for GetNetworkPrivateResponseFoldersItem
Source§fn eq(&self, other: &GetNetworkPrivateResponseFoldersItem) -> bool
fn eq(&self, other: &GetNetworkPrivateResponseFoldersItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetNetworkPrivateResponseFoldersItem
Auto Trait Implementations§
impl Freeze for GetNetworkPrivateResponseFoldersItem
impl RefUnwindSafe for GetNetworkPrivateResponseFoldersItem
impl Send for GetNetworkPrivateResponseFoldersItem
impl Sync for GetNetworkPrivateResponseFoldersItem
impl Unpin for GetNetworkPrivateResponseFoldersItem
impl UnwindSafe for GetNetworkPrivateResponseFoldersItem
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