pub struct LibraryFolder {
pub id: Option<String>,
pub name: Option<String>,
pub parent_folder_id: Option<String>,
pub created_by: Option<String>,
pub updated: Option<String>,
}Expand description
LibraryFolder : Basic details such as sub-folders, title, etc.
Fields§
§id: Option<String>Gong’s unique numeric identifier for a library’s folder (up to 20 digits).
name: Option<String>Display name of the folder.
parent_folder_id: Option<String>Gong’s unique numeric identifier for library’s parent folder (null for root folder).
created_by: Option<String>Gong’s unique numeric identifier for the user who added the folder.
updated: Option<String>Folder’s last update time in the ISO-8601 format (e.g., ‘2020-03-14T05:30:00-08:00’).
Implementations§
Source§impl LibraryFolder
impl LibraryFolder
Sourcepub fn new() -> LibraryFolder
pub fn new() -> LibraryFolder
Basic details such as sub-folders, title, etc.
Trait Implementations§
Source§impl Clone for LibraryFolder
impl Clone for LibraryFolder
Source§fn clone(&self) -> LibraryFolder
fn clone(&self) -> LibraryFolder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LibraryFolder
impl Debug for LibraryFolder
Source§impl Default for LibraryFolder
impl Default for LibraryFolder
Source§fn default() -> LibraryFolder
fn default() -> LibraryFolder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibraryFolder
impl<'de> Deserialize<'de> for LibraryFolder
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 LibraryFolder
impl PartialEq for LibraryFolder
Source§fn eq(&self, other: &LibraryFolder) -> bool
fn eq(&self, other: &LibraryFolder) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LibraryFolder
impl Serialize for LibraryFolder
impl StructuralPartialEq for LibraryFolder
Auto Trait Implementations§
impl Freeze for LibraryFolder
impl RefUnwindSafe for LibraryFolder
impl Send for LibraryFolder
impl Sync for LibraryFolder
impl Unpin for LibraryFolder
impl UnsafeUnpin for LibraryFolder
impl UnwindSafe for LibraryFolder
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