pub struct ApiPage {
pub is_closed: Option<bool>,
pub accessible_by_group_ids: Option<Vec<String>>,
pub root_comment_count: i64,
pub comment_count: i64,
pub created_at: String,
pub title: String,
pub url: Option<String>,
pub url_id: String,
pub id: String,
}Fields§
§is_closed: Option<bool>§accessible_by_group_ids: Option<Vec<String>>§root_comment_count: i64§comment_count: i64§created_at: String§title: String§url: Option<String>§url_id: String§id: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApiPage
impl<'de> Deserialize<'de> for ApiPage
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 ApiPage
Auto Trait Implementations§
impl Freeze for ApiPage
impl RefUnwindSafe for ApiPage
impl Send for ApiPage
impl Sync for ApiPage
impl Unpin for ApiPage
impl UnwindSafe for ApiPage
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