pub struct GalleryFolder {
pub folder_id: i64,
pub name: String,
pub owner: u64,
pub unknown: HashMap<String, Value>,
}Expand description
A gallery folder
Fields§
§folder_id: i64The folder id.
For some reason, this can be -1 sometimes.
name: StringThe name of the folder
owner: u64The user id of the owner of the folder
unknown: HashMap<String, Value>Unknown data
Trait Implementations§
Source§impl Debug for GalleryFolder
impl Debug for GalleryFolder
Source§impl<'de> Deserialize<'de> for GalleryFolder
impl<'de> Deserialize<'de> for GalleryFolder
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 GalleryFolder
impl RefUnwindSafe for GalleryFolder
impl Send for GalleryFolder
impl Sync for GalleryFolder
impl Unpin for GalleryFolder
impl UnwindSafe for GalleryFolder
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