pub struct GallectionSection {
pub page: u64,
pub selected_folder_id: i64,
pub total_pages: u64,
pub unknown: HashMap<String, Value>,
}Expand description
Gallery selection info
Fields§
§page: u64The current page
selected_folder_id: i64The id of the selected folder
total_pages: u64The total number of pages
unknown: HashMap<String, Value>Unknown data
Trait Implementations§
Source§impl Debug for GallectionSection
impl Debug for GallectionSection
Source§impl<'de> Deserialize<'de> for GallectionSection
impl<'de> Deserialize<'de> for GallectionSection
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 GallectionSection
impl RefUnwindSafe for GallectionSection
impl Send for GallectionSection
impl Sync for GallectionSection
impl Unpin for GallectionSection
impl UnwindSafe for GallectionSection
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