pub struct PageList {
pub total_count: u32,
pub pages: Vec<Page>,
}Expand description
This object represents a list of Telegraph articles belonging to an account. Most recently created articles first.
Fields§
§total_count: u32Total number of pages belonging to the target Telegraph account.
pages: Vec<Page>Requested pages of the target Telegraph account.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PageList
impl<'de> Deserialize<'de> for PageList
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 PageList
impl RefUnwindSafe for PageList
impl Send for PageList
impl Sync for PageList
impl Unpin for PageList
impl UnsafeUnpin for PageList
impl UnwindSafe for PageList
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