pub struct PanFolderCreated {
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 pan_folder_created_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 element 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 parent folder ID.
pan_folder_created_type: Option<String>
The folder’s type. This is always the folder
value.
updated_at: Option<String>
The date and time at which the folder was updated.
updated_by: Option<i64>
The user who updated the folder.
Trait Implementations§
Source§impl Clone for PanFolderCreated
impl Clone for PanFolderCreated
Source§fn clone(&self) -> PanFolderCreated
fn clone(&self) -> PanFolderCreated
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 PanFolderCreated
impl Debug for PanFolderCreated
Source§impl<'de> Deserialize<'de> for PanFolderCreated
impl<'de> Deserialize<'de> for PanFolderCreated
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 PanFolderCreated
impl PartialEq for PanFolderCreated
Source§impl Serialize for PanFolderCreated
impl Serialize for PanFolderCreated
impl StructuralPartialEq for PanFolderCreated
Auto Trait Implementations§
impl Freeze for PanFolderCreated
impl RefUnwindSafe for PanFolderCreated
impl Send for PanFolderCreated
impl Sync for PanFolderCreated
impl Unpin for PanFolderCreated
impl UnwindSafe for PanFolderCreated
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