pub struct PostList {
pub data: Option<Vec<CalendarPost>>,
}Fields§
§data: Option<Vec<CalendarPost>>Data is the page, ordered by scheduledAt descending — the furthest-out post first and unscheduled drafts (scheduledAt 0) last. An empty array when the org’s calendar holds no matching post.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PostList
impl<'de> Deserialize<'de> for PostList
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
impl StructuralPartialEq for PostList
Auto Trait Implementations§
impl Freeze for PostList
impl RefUnwindSafe for PostList
impl Send for PostList
impl Sync for PostList
impl Unpin for PostList
impl UnsafeUnpin for PostList
impl UnwindSafe for PostList
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