pub struct FolderResp {Show 21 fields
pub id: i64,
pub name: String,
pub full_name: String,
pub context_id: i64,
pub context_type: String,
pub parent_folder_id: Option<i64>,
pub created_at: String,
pub updated_at: String,
pub lock_at: Option<String>,
pub unlock_at: Option<String>,
pub position: Option<i64>,
pub locked: bool,
pub folders_url: String,
pub files_url: String,
pub files_count: i64,
pub folders_count: i64,
pub hidden: Option<bool>,
pub locked_for_user: bool,
pub hidden_for_user: bool,
pub for_submissions: bool,
pub can_upload: bool,
}
Fields§
§id: i64
§name: String
§full_name: String
§context_id: i64
§context_type: String
§parent_folder_id: Option<i64>
§created_at: String
§updated_at: String
§lock_at: Option<String>
§unlock_at: Option<String>
§position: Option<i64>
§locked: bool
§folders_url: String
§files_url: String
§files_count: i64
§folders_count: i64
§locked_for_user: bool
§for_submissions: bool
§can_upload: bool
Trait Implementations§
Source§impl Clone for FolderResp
impl Clone for FolderResp
Source§fn clone(&self) -> FolderResp
fn clone(&self) -> FolderResp
Returns a copy 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 FolderResp
impl Debug for FolderResp
Source§impl<'de> Deserialize<'de> for FolderResp
impl<'de> Deserialize<'de> for FolderResp
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
Auto Trait Implementations§
impl Freeze for FolderResp
impl RefUnwindSafe for FolderResp
impl Send for FolderResp
impl Sync for FolderResp
impl Unpin for FolderResp
impl UnwindSafe for FolderResp
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