pub struct GetFolderOutput {
pub access_date: Option<String>,
pub access_date_display: Option<String>,
pub accessibility: Option<i64>,
pub creation_date: Option<String>,
pub delete_protection: Option<bool>,
pub folder_id: Option<i64>,
pub folder_name: Option<String>,
pub metadata: Option<String>,
pub modification_date: Option<String>,
pub tags: Option<Vec<String>>,
}Expand description
GetFolderOutput : GetFolderOutput is the result of the getFolder operation
Fields§
§access_date: Option<String>§access_date_display: Option<String>§accessibility: Option<i64>§creation_date: Option<String>§delete_protection: Option<bool>§folder_id: Option<i64>§folder_name: Option<String>§metadata: Option<String>§modification_date: Option<String>Implementations§
Source§impl GetFolderOutput
impl GetFolderOutput
Sourcepub fn new() -> GetFolderOutput
pub fn new() -> GetFolderOutput
GetFolderOutput is the result of the getFolder operation
Trait Implementations§
Source§impl Clone for GetFolderOutput
impl Clone for GetFolderOutput
Source§fn clone(&self) -> GetFolderOutput
fn clone(&self) -> GetFolderOutput
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 GetFolderOutput
impl Debug for GetFolderOutput
Source§impl Default for GetFolderOutput
impl Default for GetFolderOutput
Source§fn default() -> GetFolderOutput
fn default() -> GetFolderOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFolderOutput
impl<'de> Deserialize<'de> for GetFolderOutput
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 GetFolderOutput
impl PartialEq for GetFolderOutput
Source§fn eq(&self, other: &GetFolderOutput) -> bool
fn eq(&self, other: &GetFolderOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetFolderOutput
impl Serialize for GetFolderOutput
impl StructuralPartialEq for GetFolderOutput
Auto Trait Implementations§
impl Freeze for GetFolderOutput
impl RefUnwindSafe for GetFolderOutput
impl Send for GetFolderOutput
impl Sync for GetFolderOutput
impl Unpin for GetFolderOutput
impl UnsafeUnpin for GetFolderOutput
impl UnwindSafe for GetFolderOutput
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